/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { addressDto } from './addressDto'; import type { gpsLocationDto } from './gpsLocationDto'; import type { imageReferenceDto } from './imageReferenceDto'; import type { scheduleDto } from './scheduleDto'; import type { simpleContactDto } from './simpleContactDto'; export type createSellerRevisionDto = { /** * Version number of the document. */ documentVersion?: number; schedule?: scheduleDto; address?: addressDto; contactInfo?: simpleContactDto; location?: gpsLocationDto; /** * A key value collection for storing additional information */ additional?: Record | null; /** * A list of image references. */ images?: Array | null; };