@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.96 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 { SoSRelSourcePropertyEntityBase } from './SoSRelSourcePropertyEntityBase';
/**
*
* @export
* @interface V4SourcePropertyRelationsGetRelationsResponseDto
*/
export interface V4SourcePropertyRelationsGetRelationsResponseDto {
/**
* List of sources-properties relations retrieved from the database
* @type {Array<SoSRelSourcePropertyEntityBase>}
* @memberof V4SourcePropertyRelationsGetRelationsResponseDto
*/
objects: Array<SoSRelSourcePropertyEntityBase>;
/**
* Total count of sources-properties relations matching the query
* @type {number}
* @memberof V4SourcePropertyRelationsGetRelationsResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4SourcePropertyRelationsGetRelationsResponseDto interface.
*/
export declare function instanceOfV4SourcePropertyRelationsGetRelationsResponseDto(value: object): value is V4SourcePropertyRelationsGetRelationsResponseDto;
export declare function V4SourcePropertyRelationsGetRelationsResponseDtoFromJSON(json: any): V4SourcePropertyRelationsGetRelationsResponseDto;
export declare function V4SourcePropertyRelationsGetRelationsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4SourcePropertyRelationsGetRelationsResponseDto;
export declare function V4SourcePropertyRelationsGetRelationsResponseDtoToJSON(json: any): V4SourcePropertyRelationsGetRelationsResponseDto;
export declare function V4SourcePropertyRelationsGetRelationsResponseDtoToJSONTyped(value?: V4SourcePropertyRelationsGetRelationsResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4SourcePropertyRelationsGetRelationsResponseDto.d.ts.map