@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.79 kB
TypeScript
/**
* 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 V4PropertiesGetPropertiesInViewResponseDto
*/
export interface V4PropertiesGetPropertiesInViewResponseDto {
/**
* List of properties retrieved from the database
* @type {Array<SoSPropertyEntityBase>}
* @memberof V4PropertiesGetPropertiesInViewResponseDto
*/
objects: Array<SoSPropertyEntityBase>;
/**
* Total count of properties matching the query
* @type {number}
* @memberof V4PropertiesGetPropertiesInViewResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4PropertiesGetPropertiesInViewResponseDto interface.
*/
export declare function instanceOfV4PropertiesGetPropertiesInViewResponseDto(value: object): value is V4PropertiesGetPropertiesInViewResponseDto;
export declare function V4PropertiesGetPropertiesInViewResponseDtoFromJSON(json: any): V4PropertiesGetPropertiesInViewResponseDto;
export declare function V4PropertiesGetPropertiesInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4PropertiesGetPropertiesInViewResponseDto;
export declare function V4PropertiesGetPropertiesInViewResponseDtoToJSON(json: any): V4PropertiesGetPropertiesInViewResponseDto;
export declare function V4PropertiesGetPropertiesInViewResponseDtoToJSONTyped(value?: V4PropertiesGetPropertiesInViewResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4PropertiesGetPropertiesInViewResponseDto.d.ts.map