UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

39 lines 1.67 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 V4LeasingsGetLeasingsInViewResponseDto */ export interface V4LeasingsGetLeasingsInViewResponseDto { /** * List of leasings retrieved from the database in the specified view * @type {Array<object>} * @memberof V4LeasingsGetLeasingsInViewResponseDto */ objects: Array<object>; /** * Total count of leasings matching the query in the specified view * @type {number} * @memberof V4LeasingsGetLeasingsInViewResponseDto */ count: number; } /** * Check if a given object implements the V4LeasingsGetLeasingsInViewResponseDto interface. */ export declare function instanceOfV4LeasingsGetLeasingsInViewResponseDto(value: object): value is V4LeasingsGetLeasingsInViewResponseDto; export declare function V4LeasingsGetLeasingsInViewResponseDtoFromJSON(json: any): V4LeasingsGetLeasingsInViewResponseDto; export declare function V4LeasingsGetLeasingsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeasingsGetLeasingsInViewResponseDto; export declare function V4LeasingsGetLeasingsInViewResponseDtoToJSON(json: any): V4LeasingsGetLeasingsInViewResponseDto; export declare function V4LeasingsGetLeasingsInViewResponseDtoToJSONTyped(value?: V4LeasingsGetLeasingsInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4LeasingsGetLeasingsInViewResponseDto.d.ts.map