@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.57 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 { SoSTenantEntityBase } from './SoSTenantEntityBase';
/**
*
* @export
* @interface V4TenantsGetTenantResponseDto
*/
export interface V4TenantsGetTenantResponseDto {
/**
* List of tenants (should contain single tenant)
* @type {Array<SoSTenantEntityBase>}
* @memberof V4TenantsGetTenantResponseDto
*/
objects: Array<SoSTenantEntityBase>;
/**
* Total count (should be 1 for single tenant)
* @type {number}
* @memberof V4TenantsGetTenantResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4TenantsGetTenantResponseDto interface.
*/
export declare function instanceOfV4TenantsGetTenantResponseDto(value: object): value is V4TenantsGetTenantResponseDto;
export declare function V4TenantsGetTenantResponseDtoFromJSON(json: any): V4TenantsGetTenantResponseDto;
export declare function V4TenantsGetTenantResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4TenantsGetTenantResponseDto;
export declare function V4TenantsGetTenantResponseDtoToJSON(json: any): V4TenantsGetTenantResponseDto;
export declare function V4TenantsGetTenantResponseDtoToJSONTyped(value?: V4TenantsGetTenantResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4TenantsGetTenantResponseDto.d.ts.map