@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
51 lines (50 loc) • 1.53 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.
*/
/**
* Check if a given object implements the SoSRelOfferPropertyEntityBase interface.
*/
export function instanceOfSoSRelOfferPropertyEntityBase(value) {
if (!('offerId' in value) || value['offerId'] === undefined)
return false;
if (!('pid' in value) || value['pid'] === undefined)
return false;
return true;
}
export function SoSRelOfferPropertyEntityBaseFromJSON(json) {
return SoSRelOfferPropertyEntityBaseFromJSONTyped(json, false);
}
export function SoSRelOfferPropertyEntityBaseFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
...json, // Preserve relation fields from views
'offerId': json['offerId'],
'pid': json['pid'],
'price': json['price'] == null ? undefined : json['price'],
};
}
export function SoSRelOfferPropertyEntityBaseToJSON(json) {
return SoSRelOfferPropertyEntityBaseToJSONTyped(json, false);
}
export function SoSRelOfferPropertyEntityBaseToJSONTyped(value, ignoreDiscriminator = false) {
if (value == null) {
return value;
}
return {
'offerId': value['offerId'],
'pid': value['pid'],
'price': value['price'],
};
}