@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
47 lines (46 loc) • 1.47 kB
JavaScript
/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
/**
* Type of leasing agreement
* @export
* @enum {string}
*/
export var SoSLeasingEntityType;
(function (SoSLeasingEntityType) {
SoSLeasingEntityType["SosLeasingsTypeSection8"] = "sos_leasings|type|section_8";
SoSLeasingEntityType["SosLeasingsTypeOtherVoucherAgency"] = "sos_leasings|type|other_voucher_agency";
SoSLeasingEntityType["SosLeasingsTypeMarket"] = "sos_leasings|type|market";
})(SoSLeasingEntityType || (SoSLeasingEntityType = {}));
export function instanceOfSoSLeasingEntityType(value) {
for (const key in SoSLeasingEntityType) {
if (Object.prototype.hasOwnProperty.call(SoSLeasingEntityType, key)) {
if (SoSLeasingEntityType[key] === value) {
return true;
}
}
}
return false;
}
export function SoSLeasingEntityTypeFromJSON(json) {
return SoSLeasingEntityTypeFromJSONTyped(json, false);
}
export function SoSLeasingEntityTypeFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
export function SoSLeasingEntityTypeToJSON(value) {
return value;
}
export function SoSLeasingEntityTypeToJSONTyped(value, ignoreDiscriminator) {
return value;
}