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