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