UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

34 lines 1.4 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. */ import type { SoSUpdateEntityBase } from './SoSUpdateEntityBase'; /** * * @export * @interface V4UpdatesGetUpdateResponseDto */ export interface V4UpdatesGetUpdateResponseDto { /** * The update object retrieved from the database * @type {SoSUpdateEntityBase} * @memberof V4UpdatesGetUpdateResponseDto */ object: SoSUpdateEntityBase; } /** * Check if a given object implements the V4UpdatesGetUpdateResponseDto interface. */ export declare function instanceOfV4UpdatesGetUpdateResponseDto(value: object): value is V4UpdatesGetUpdateResponseDto; export declare function V4UpdatesGetUpdateResponseDtoFromJSON(json: any): V4UpdatesGetUpdateResponseDto; export declare function V4UpdatesGetUpdateResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4UpdatesGetUpdateResponseDto; export declare function V4UpdatesGetUpdateResponseDtoToJSON(json: any): V4UpdatesGetUpdateResponseDto; export declare function V4UpdatesGetUpdateResponseDtoToJSONTyped(value?: V4UpdatesGetUpdateResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4UpdatesGetUpdateResponseDto.d.ts.map