UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.77 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 { SoSPropertyEntityBase } from './SoSPropertyEntityBase'; /** * * @export * @interface V4PropertiesGetPropertyColumnsResponseDto */ export interface V4PropertiesGetPropertyColumnsResponseDto { /** * List of properties retrieved from the database * @type {Array<SoSPropertyEntityBase>} * @memberof V4PropertiesGetPropertyColumnsResponseDto */ objects: Array<SoSPropertyEntityBase>; /** * Total count of properties matching the query * @type {number} * @memberof V4PropertiesGetPropertyColumnsResponseDto */ count: number; } /** * Check if a given object implements the V4PropertiesGetPropertyColumnsResponseDto interface. */ export declare function instanceOfV4PropertiesGetPropertyColumnsResponseDto(value: object): value is V4PropertiesGetPropertyColumnsResponseDto; export declare function V4PropertiesGetPropertyColumnsResponseDtoFromJSON(json: any): V4PropertiesGetPropertyColumnsResponseDto; export declare function V4PropertiesGetPropertyColumnsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4PropertiesGetPropertyColumnsResponseDto; export declare function V4PropertiesGetPropertyColumnsResponseDtoToJSON(json: any): V4PropertiesGetPropertyColumnsResponseDto; export declare function V4PropertiesGetPropertyColumnsResponseDtoToJSONTyped(value?: V4PropertiesGetPropertyColumnsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4PropertiesGetPropertyColumnsResponseDto.d.ts.map