@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 2.24 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 { SoSRelContactPropertyEntityBase } from './SoSRelContactPropertyEntityBase';
/**
*
* @export
* @interface V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto
*/
export interface V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto {
/**
* List of rel-contact-properties retrieved from the database
* @type {Array<SoSRelContactPropertyEntityBase>}
* @memberof V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto
*/
objects: Array<SoSRelContactPropertyEntityBase>;
/**
* Total count of rel-contact-properties matching the query
* @type {number}
* @memberof V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto interface.
*/
export declare function instanceOfV4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto(value: object): value is V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto;
export declare function V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDtoFromJSON(json: any): V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto;
export declare function V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto;
export declare function V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDtoToJSON(json: any): V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto;
export declare function V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDtoToJSONTyped(value?: V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4ContactPropertyRelationsGetRelContactPropertiesInViewResponseDto.d.ts.map