UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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