UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.68 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 { SoSTenantEntityBase } from './SoSTenantEntityBase'; /** * * @export * @interface V4TenantsGetTenantsInViewResponseDto */ export interface V4TenantsGetTenantsInViewResponseDto { /** * List of tenants retrieved from the database * @type {Array<SoSTenantEntityBase>} * @memberof V4TenantsGetTenantsInViewResponseDto */ objects: Array<SoSTenantEntityBase>; /** * Total count of tenants matching the query * @type {number} * @memberof V4TenantsGetTenantsInViewResponseDto */ count: number; } /** * Check if a given object implements the V4TenantsGetTenantsInViewResponseDto interface. */ export declare function instanceOfV4TenantsGetTenantsInViewResponseDto(value: object): value is V4TenantsGetTenantsInViewResponseDto; export declare function V4TenantsGetTenantsInViewResponseDtoFromJSON(json: any): V4TenantsGetTenantsInViewResponseDto; export declare function V4TenantsGetTenantsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4TenantsGetTenantsInViewResponseDto; export declare function V4TenantsGetTenantsInViewResponseDtoToJSON(json: any): V4TenantsGetTenantsInViewResponseDto; export declare function V4TenantsGetTenantsInViewResponseDtoToJSONTyped(value?: V4TenantsGetTenantsInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4TenantsGetTenantsInViewResponseDto.d.ts.map