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 V4LeasingsGetLeasingColumnsResponseDto */ export interface V4LeasingsGetLeasingColumnsResponseDto { /** * List containing the single leasing with only specified columns * @type {Array<object>} * @memberof V4LeasingsGetLeasingColumnsResponseDto */ objects: Array<object>; /** * Total count of leasings matching the query (should be 1 for single leasing) * @type {number} * @memberof V4LeasingsGetLeasingColumnsResponseDto */ count: number; } /** * Check if a given object implements the V4LeasingsGetLeasingColumnsResponseDto interface. */ export declare function instanceOfV4LeasingsGetLeasingColumnsResponseDto(value: object): value is V4LeasingsGetLeasingColumnsResponseDto; export declare function V4LeasingsGetLeasingColumnsResponseDtoFromJSON(json: any): V4LeasingsGetLeasingColumnsResponseDto; export declare function V4LeasingsGetLeasingColumnsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeasingsGetLeasingColumnsResponseDto; export declare function V4LeasingsGetLeasingColumnsResponseDtoToJSON(json: any): V4LeasingsGetLeasingColumnsResponseDto; export declare function V4LeasingsGetLeasingColumnsResponseDtoToJSONTyped(value?: V4LeasingsGetLeasingColumnsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4LeasingsGetLeasingColumnsResponseDto.d.ts.map