UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.58 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 V4UpdatesGetUpdatesResponseDto */ export interface V4UpdatesGetUpdatesResponseDto { /** * List of updates retrieved from the database * @type {Array<SoSUpdateEntityBase>} * @memberof V4UpdatesGetUpdatesResponseDto */ objects: Array<SoSUpdateEntityBase>; /** * Total count of updates matching the query * @type {number} * @memberof V4UpdatesGetUpdatesResponseDto */ count: number; } /** * Check if a given object implements the V4UpdatesGetUpdatesResponseDto interface. */ export declare function instanceOfV4UpdatesGetUpdatesResponseDto(value: object): value is V4UpdatesGetUpdatesResponseDto; export declare function V4UpdatesGetUpdatesResponseDtoFromJSON(json: any): V4UpdatesGetUpdatesResponseDto; export declare function V4UpdatesGetUpdatesResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4UpdatesGetUpdatesResponseDto; export declare function V4UpdatesGetUpdatesResponseDtoToJSON(json: any): V4UpdatesGetUpdatesResponseDto; export declare function V4UpdatesGetUpdatesResponseDtoToJSONTyped(value?: V4UpdatesGetUpdatesResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4UpdatesGetUpdatesResponseDto.d.ts.map