@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
95 lines • 2.81 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.
*/
/**
*
* @export
* @interface SoSHousingAuthorityEntityBase
*/
export interface SoSHousingAuthorityEntityBase {
/**
* Housing Authority ID
* @type {number}
* @memberof SoSHousingAuthorityEntityBase
*/
haid: number;
/**
* Housing authority name
* @type {string}
* @memberof SoSHousingAuthorityEntityBase
*/
name: string;
/**
* Housing authority code
* @type {string}
* @memberof SoSHousingAuthorityEntityBase
*/
code: string;
/**
* Geographic area of the housing authority
* @type {{ [key: string]: any; }}
* @memberof SoSHousingAuthorityEntityBase
*/
area: {
[key: string]: any;
};
/**
* Priority level
* @type {number}
* @memberof SoSHousingAuthorityEntityBase
*/
priority: number;
/**
* Payment standard type
* @type {string}
* @memberof SoSHousingAuthorityEntityBase
*/
paymentStandardType: string;
/**
* Payment standard period
* @type {string}
* @memberof SoSHousingAuthorityEntityBase
*/
paymentStandardPeriod: string;
/**
* Default property type for single unit
* @type {string}
* @memberof SoSHousingAuthorityEntityBase
*/
defaultOneUnitPropertyType: string;
/**
* Default property type for multi unit
* @type {string}
* @memberof SoSHousingAuthorityEntityBase
*/
defaultMultiUnitPropertyType: string;
/**
* Utilities allowance period
* @type {string}
* @memberof SoSHousingAuthorityEntityBase
*/
utilitiesAllowancePeriod: string;
/**
* Organization ID
* @type {number}
* @memberof SoSHousingAuthorityEntityBase
*/
organizationId?: number;
}
/**
* Check if a given object implements the SoSHousingAuthorityEntityBase interface.
*/
export declare function instanceOfSoSHousingAuthorityEntityBase(value: object): value is SoSHousingAuthorityEntityBase;
export declare function SoSHousingAuthorityEntityBaseFromJSON(json: any): SoSHousingAuthorityEntityBase;
export declare function SoSHousingAuthorityEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSHousingAuthorityEntityBase;
export declare function SoSHousingAuthorityEntityBaseToJSON(json: any): SoSHousingAuthorityEntityBase;
export declare function SoSHousingAuthorityEntityBaseToJSONTyped(value?: SoSHousingAuthorityEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSHousingAuthorityEntityBase.d.ts.map