UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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