@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.95 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 { SoSRelLeadUserEntityBase } from './SoSRelLeadUserEntityBase';
/**
*
* @export
* @interface V4LeadUserRelationsGetRelLeadUsersInViewResponseDto
*/
export interface V4LeadUserRelationsGetRelLeadUsersInViewResponseDto {
/**
* List of rel-lead-users retrieved from the database
* @type {Array<SoSRelLeadUserEntityBase>}
* @memberof V4LeadUserRelationsGetRelLeadUsersInViewResponseDto
*/
objects: Array<SoSRelLeadUserEntityBase>;
/**
* Total count of rel-lead-users matching the query
* @type {number}
* @memberof V4LeadUserRelationsGetRelLeadUsersInViewResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4LeadUserRelationsGetRelLeadUsersInViewResponseDto interface.
*/
export declare function instanceOfV4LeadUserRelationsGetRelLeadUsersInViewResponseDto(value: object): value is V4LeadUserRelationsGetRelLeadUsersInViewResponseDto;
export declare function V4LeadUserRelationsGetRelLeadUsersInViewResponseDtoFromJSON(json: any): V4LeadUserRelationsGetRelLeadUsersInViewResponseDto;
export declare function V4LeadUserRelationsGetRelLeadUsersInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeadUserRelationsGetRelLeadUsersInViewResponseDto;
export declare function V4LeadUserRelationsGetRelLeadUsersInViewResponseDtoToJSON(json: any): V4LeadUserRelationsGetRelLeadUsersInViewResponseDto;
export declare function V4LeadUserRelationsGetRelLeadUsersInViewResponseDtoToJSONTyped(value?: V4LeadUserRelationsGetRelLeadUsersInViewResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4LeadUserRelationsGetRelLeadUsersInViewResponseDto.d.ts.map