UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

75 lines 2.01 kB
/** * API v4 * Swagger documentation for API v4 * * The version of the OpenAPI document: 4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SoSImageUploadEntityBase */ export interface SoSImageUploadEntityBase { /** * * @type {string} * @memberof SoSImageUploadEntityBase */ iuid: string; /** * * @type {string} * @memberof SoSImageUploadEntityBase */ original: string; /** * * @type {string} * @memberof SoSImageUploadEntityBase */ s3WebpOriginal?: string; /** * * @type {string} * @memberof SoSImageUploadEntityBase */ s3WebpThumbnail400?: string; /** * * @type {string} * @memberof SoSImageUploadEntityBase */ s3WebpThumbnail150?: string; /** * * @type {string} * @memberof SoSImageUploadEntityBase */ cfWebpOriginal?: string; /** * * @type {string} * @memberof SoSImageUploadEntityBase */ cfWebpThumbnail400?: string; /** * * @type {string} * @memberof SoSImageUploadEntityBase */ cfWebpThumbnail150?: string; } /** * Check if a given object implements the SoSImageUploadEntityBase interface. */ export declare function instanceOfSoSImageUploadEntityBase(value: object): value is SoSImageUploadEntityBase; export declare function SoSImageUploadEntityBaseFromJSON(json: any): SoSImageUploadEntityBase; export declare function SoSImageUploadEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSImageUploadEntityBase; export declare function SoSImageUploadEntityBaseToJSON(json: any): SoSImageUploadEntityBase; export declare function SoSImageUploadEntityBaseToJSONTyped(value?: SoSImageUploadEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSImageUploadEntityBase.d.ts.map