UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.49 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 { SoSLeadEntityBase } from './SoSLeadEntityBase'; /** * * @export * @interface V4LeadsGetLeadResponseDto */ export interface V4LeadsGetLeadResponseDto { /** * List of leads retrieved from the database * @type {Array<SoSLeadEntityBase>} * @memberof V4LeadsGetLeadResponseDto */ objects: Array<SoSLeadEntityBase>; /** * Total count of leads matching the query * @type {number} * @memberof V4LeadsGetLeadResponseDto */ count: number; } /** * Check if a given object implements the V4LeadsGetLeadResponseDto interface. */ export declare function instanceOfV4LeadsGetLeadResponseDto(value: object): value is V4LeadsGetLeadResponseDto; export declare function V4LeadsGetLeadResponseDtoFromJSON(json: any): V4LeadsGetLeadResponseDto; export declare function V4LeadsGetLeadResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeadsGetLeadResponseDto; export declare function V4LeadsGetLeadResponseDtoToJSON(json: any): V4LeadsGetLeadResponseDto; export declare function V4LeadsGetLeadResponseDtoToJSONTyped(value?: V4LeadsGetLeadResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4LeadsGetLeadResponseDto.d.ts.map