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