@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.6 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 { SoSLeadEntityBase } from './SoSLeadEntityBase';
/**
*
* @export
* @interface V4LeadsGetLeadsInViewResponseDto
*/
export interface V4LeadsGetLeadsInViewResponseDto {
/**
* List of leads retrieved from the database
* @type {Array<SoSLeadEntityBase>}
* @memberof V4LeadsGetLeadsInViewResponseDto
*/
objects: Array<SoSLeadEntityBase>;
/**
* Total count of leads matching the query
* @type {number}
* @memberof V4LeadsGetLeadsInViewResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4LeadsGetLeadsInViewResponseDto interface.
*/
export declare function instanceOfV4LeadsGetLeadsInViewResponseDto(value: object): value is V4LeadsGetLeadsInViewResponseDto;
export declare function V4LeadsGetLeadsInViewResponseDtoFromJSON(json: any): V4LeadsGetLeadsInViewResponseDto;
export declare function V4LeadsGetLeadsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeadsGetLeadsInViewResponseDto;
export declare function V4LeadsGetLeadsInViewResponseDtoToJSON(json: any): V4LeadsGetLeadsInViewResponseDto;
export declare function V4LeadsGetLeadsInViewResponseDtoToJSONTyped(value?: V4LeadsGetLeadsInViewResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4LeadsGetLeadsInViewResponseDto.d.ts.map