UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

34 lines 1.5 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 V4UpdatesGetUpdateColumnsResponseDto */ export interface V4UpdatesGetUpdateColumnsResponseDto { /** * The update object with selected columns * @type {SoSUpdateEntityBase} * @memberof V4UpdatesGetUpdateColumnsResponseDto */ object: SoSUpdateEntityBase; } /** * Check if a given object implements the V4UpdatesGetUpdateColumnsResponseDto interface. */ export declare function instanceOfV4UpdatesGetUpdateColumnsResponseDto(value: object): value is V4UpdatesGetUpdateColumnsResponseDto; export declare function V4UpdatesGetUpdateColumnsResponseDtoFromJSON(json: any): V4UpdatesGetUpdateColumnsResponseDto; export declare function V4UpdatesGetUpdateColumnsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4UpdatesGetUpdateColumnsResponseDto; export declare function V4UpdatesGetUpdateColumnsResponseDtoToJSON(json: any): V4UpdatesGetUpdateColumnsResponseDto; export declare function V4UpdatesGetUpdateColumnsResponseDtoToJSONTyped(value?: V4UpdatesGetUpdateColumnsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4UpdatesGetUpdateColumnsResponseDto.d.ts.map