UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

39 lines 1.56 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 V4LeasingsGetLeasingResponseDto */ export interface V4LeasingsGetLeasingResponseDto { /** * List containing the single leasing retrieved from the database * @type {Array<object>} * @memberof V4LeasingsGetLeasingResponseDto */ objects: Array<object>; /** * Total count of leasings matching the query (should be 1 for single leasing) * @type {number} * @memberof V4LeasingsGetLeasingResponseDto */ count: number; } /** * Check if a given object implements the V4LeasingsGetLeasingResponseDto interface. */ export declare function instanceOfV4LeasingsGetLeasingResponseDto(value: object): value is V4LeasingsGetLeasingResponseDto; export declare function V4LeasingsGetLeasingResponseDtoFromJSON(json: any): V4LeasingsGetLeasingResponseDto; export declare function V4LeasingsGetLeasingResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeasingsGetLeasingResponseDto; export declare function V4LeasingsGetLeasingResponseDtoToJSON(json: any): V4LeasingsGetLeasingResponseDto; export declare function V4LeasingsGetLeasingResponseDtoToJSONTyped(value?: V4LeasingsGetLeasingResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4LeasingsGetLeasingResponseDto.d.ts.map