UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.55 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 { SoSOwnerEntityBase } from './SoSOwnerEntityBase'; /** * * @export * @interface V4OwnersGetOwnersResponseDto */ export interface V4OwnersGetOwnersResponseDto { /** * List of owners retrieved from the database * @type {Array<SoSOwnerEntityBase>} * @memberof V4OwnersGetOwnersResponseDto */ objects: Array<SoSOwnerEntityBase>; /** * Total count of owners matching the query * @type {number} * @memberof V4OwnersGetOwnersResponseDto */ count: number; } /** * Check if a given object implements the V4OwnersGetOwnersResponseDto interface. */ export declare function instanceOfV4OwnersGetOwnersResponseDto(value: object): value is V4OwnersGetOwnersResponseDto; export declare function V4OwnersGetOwnersResponseDtoFromJSON(json: any): V4OwnersGetOwnersResponseDto; export declare function V4OwnersGetOwnersResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4OwnersGetOwnersResponseDto; export declare function V4OwnersGetOwnersResponseDtoToJSON(json: any): V4OwnersGetOwnersResponseDto; export declare function V4OwnersGetOwnersResponseDtoToJSONTyped(value?: V4OwnersGetOwnersResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4OwnersGetOwnersResponseDto.d.ts.map