UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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