UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2.14 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 { SoSRelContactPropertyEntityBase } from './SoSRelContactPropertyEntityBase'; /** * * @export * @interface V4ContactPropertyRelationsGetRelContactPropertiesResponseDto */ export interface V4ContactPropertyRelationsGetRelContactPropertiesResponseDto { /** * List of rel-contact-properties retrieved from the database * @type {Array<SoSRelContactPropertyEntityBase>} * @memberof V4ContactPropertyRelationsGetRelContactPropertiesResponseDto */ objects: Array<SoSRelContactPropertyEntityBase>; /** * Total count of rel-contact-properties matching the query * @type {number} * @memberof V4ContactPropertyRelationsGetRelContactPropertiesResponseDto */ count: number; } /** * Check if a given object implements the V4ContactPropertyRelationsGetRelContactPropertiesResponseDto interface. */ export declare function instanceOfV4ContactPropertyRelationsGetRelContactPropertiesResponseDto(value: object): value is V4ContactPropertyRelationsGetRelContactPropertiesResponseDto; export declare function V4ContactPropertyRelationsGetRelContactPropertiesResponseDtoFromJSON(json: any): V4ContactPropertyRelationsGetRelContactPropertiesResponseDto; export declare function V4ContactPropertyRelationsGetRelContactPropertiesResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ContactPropertyRelationsGetRelContactPropertiesResponseDto; export declare function V4ContactPropertyRelationsGetRelContactPropertiesResponseDtoToJSON(json: any): V4ContactPropertyRelationsGetRelContactPropertiesResponseDto; export declare function V4ContactPropertyRelationsGetRelContactPropertiesResponseDtoToJSONTyped(value?: V4ContactPropertyRelationsGetRelContactPropertiesResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ContactPropertyRelationsGetRelContactPropertiesResponseDto.d.ts.map