29 lines
882 B
TypeScript
29 lines
882 B
TypeScript
/* 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<string, any> | null;
|
|
/**
|
|
* A list of image references.
|
|
*/
|
|
images?: Array<imageReferenceDto> | null;
|
|
};
|
|
|