UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2.03 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 { SoSUtilitiesAllowanceEntityBase } from './SoSUtilitiesAllowanceEntityBase'; /** * * @export * @interface V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto */ export interface V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto { /** * List of utilities allowances retrieved from the database * @type {Array<SoSUtilitiesAllowanceEntityBase>} * @memberof V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto */ objects: Array<SoSUtilitiesAllowanceEntityBase>; /** * Total count of utilities allowances matching the query * @type {number} * @memberof V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto */ count: number; } /** * Check if a given object implements the V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto interface. */ export declare function instanceOfV4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto(value: object): value is V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto; export declare function V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDtoFromJSON(json: any): V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto; export declare function V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto; export declare function V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDtoToJSON(json: any): V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto; export declare function V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDtoToJSONTyped(value?: V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4UtilitiesAllowancesGetUtilitiesAllowanceResponseDto.d.ts.map