UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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