UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.86 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 { SoSRelLeadUserEntityBase } from './SoSRelLeadUserEntityBase'; /** * * @export * @interface V4LeadUserRelationsGetRelLeadUsersResponseDto */ export interface V4LeadUserRelationsGetRelLeadUsersResponseDto { /** * List of rel-lead-users retrieved from the database * @type {Array<SoSRelLeadUserEntityBase>} * @memberof V4LeadUserRelationsGetRelLeadUsersResponseDto */ objects: Array<SoSRelLeadUserEntityBase>; /** * Total count of rel-lead-users matching the query * @type {number} * @memberof V4LeadUserRelationsGetRelLeadUsersResponseDto */ count: number; } /** * Check if a given object implements the V4LeadUserRelationsGetRelLeadUsersResponseDto interface. */ export declare function instanceOfV4LeadUserRelationsGetRelLeadUsersResponseDto(value: object): value is V4LeadUserRelationsGetRelLeadUsersResponseDto; export declare function V4LeadUserRelationsGetRelLeadUsersResponseDtoFromJSON(json: any): V4LeadUserRelationsGetRelLeadUsersResponseDto; export declare function V4LeadUserRelationsGetRelLeadUsersResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeadUserRelationsGetRelLeadUsersResponseDto; export declare function V4LeadUserRelationsGetRelLeadUsersResponseDtoToJSON(json: any): V4LeadUserRelationsGetRelLeadUsersResponseDto; export declare function V4LeadUserRelationsGetRelLeadUsersResponseDtoToJSONTyped(value?: V4LeadUserRelationsGetRelLeadUsersResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4LeadUserRelationsGetRelLeadUsersResponseDto.d.ts.map