@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 2.02 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 { SoSPropertyManagerEntityBase } from './SoSPropertyManagerEntityBase';
/**
*
* @export
* @interface V4PropertyManagersGetPropertyManagerColumnsResponseDto
*/
export interface V4PropertyManagersGetPropertyManagerColumnsResponseDto {
/**
* List of propertyManagers retrieved from the database
* @type {Array<SoSPropertyManagerEntityBase>}
* @memberof V4PropertyManagersGetPropertyManagerColumnsResponseDto
*/
objects: Array<SoSPropertyManagerEntityBase>;
/**
* Total count of propertyManagers matching the query
* @type {number}
* @memberof V4PropertyManagersGetPropertyManagerColumnsResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4PropertyManagersGetPropertyManagerColumnsResponseDto interface.
*/
export declare function instanceOfV4PropertyManagersGetPropertyManagerColumnsResponseDto(value: object): value is V4PropertyManagersGetPropertyManagerColumnsResponseDto;
export declare function V4PropertyManagersGetPropertyManagerColumnsResponseDtoFromJSON(json: any): V4PropertyManagersGetPropertyManagerColumnsResponseDto;
export declare function V4PropertyManagersGetPropertyManagerColumnsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4PropertyManagersGetPropertyManagerColumnsResponseDto;
export declare function V4PropertyManagersGetPropertyManagerColumnsResponseDtoToJSON(json: any): V4PropertyManagersGetPropertyManagerColumnsResponseDto;
export declare function V4PropertyManagersGetPropertyManagerColumnsResponseDtoToJSONTyped(value?: V4PropertyManagersGetPropertyManagerColumnsResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4PropertyManagersGetPropertyManagerColumnsResponseDto.d.ts.map