UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2 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 { SoSRelLeadPropertyEntityBase } from './SoSRelLeadPropertyEntityBase'; /** * * @export * @interface V4LeadPropertyRelationsGetRelLeadPropertyResponseDto */ export interface V4LeadPropertyRelationsGetRelLeadPropertyResponseDto { /** * List of rel-lead-properties retrieved from the database * @type {Array<SoSRelLeadPropertyEntityBase>} * @memberof V4LeadPropertyRelationsGetRelLeadPropertyResponseDto */ objects: Array<SoSRelLeadPropertyEntityBase>; /** * Total count of rel-lead-properties matching the query * @type {number} * @memberof V4LeadPropertyRelationsGetRelLeadPropertyResponseDto */ count: number; } /** * Check if a given object implements the V4LeadPropertyRelationsGetRelLeadPropertyResponseDto interface. */ export declare function instanceOfV4LeadPropertyRelationsGetRelLeadPropertyResponseDto(value: object): value is V4LeadPropertyRelationsGetRelLeadPropertyResponseDto; export declare function V4LeadPropertyRelationsGetRelLeadPropertyResponseDtoFromJSON(json: any): V4LeadPropertyRelationsGetRelLeadPropertyResponseDto; export declare function V4LeadPropertyRelationsGetRelLeadPropertyResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeadPropertyRelationsGetRelLeadPropertyResponseDto; export declare function V4LeadPropertyRelationsGetRelLeadPropertyResponseDtoToJSON(json: any): V4LeadPropertyRelationsGetRelLeadPropertyResponseDto; export declare function V4LeadPropertyRelationsGetRelLeadPropertyResponseDtoToJSONTyped(value?: V4LeadPropertyRelationsGetRelLeadPropertyResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4LeadPropertyRelationsGetRelLeadPropertyResponseDto.d.ts.map