UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.6 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 { SoSUnitEntityBase } from './SoSUnitEntityBase'; /** * * @export * @interface V4UnitsGetUnitsInViewResponseDto */ export interface V4UnitsGetUnitsInViewResponseDto { /** * List of units retrieved from the database * @type {Array<SoSUnitEntityBase>} * @memberof V4UnitsGetUnitsInViewResponseDto */ objects: Array<SoSUnitEntityBase>; /** * Total count of units matching the query * @type {number} * @memberof V4UnitsGetUnitsInViewResponseDto */ count: number; } /** * Check if a given object implements the V4UnitsGetUnitsInViewResponseDto interface. */ export declare function instanceOfV4UnitsGetUnitsInViewResponseDto(value: object): value is V4UnitsGetUnitsInViewResponseDto; export declare function V4UnitsGetUnitsInViewResponseDtoFromJSON(json: any): V4UnitsGetUnitsInViewResponseDto; export declare function V4UnitsGetUnitsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4UnitsGetUnitsInViewResponseDto; export declare function V4UnitsGetUnitsInViewResponseDtoToJSON(json: any): V4UnitsGetUnitsInViewResponseDto; export declare function V4UnitsGetUnitsInViewResponseDtoToJSONTyped(value?: V4UnitsGetUnitsInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4UnitsGetUnitsInViewResponseDto.d.ts.map