UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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