UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

46 lines (45 loc) 1.56 kB
/* 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 notification * @export * @enum {string} */ export var AirtableCommentNotificationEntityType; (function (AirtableCommentNotificationEntityType) { AirtableCommentNotificationEntityType["Mention"] = "mention"; AirtableCommentNotificationEntityType["Subscription"] = "subscription"; })(AirtableCommentNotificationEntityType || (AirtableCommentNotificationEntityType = {})); export function instanceOfAirtableCommentNotificationEntityType(value) { for (const key in AirtableCommentNotificationEntityType) { if (Object.prototype.hasOwnProperty.call(AirtableCommentNotificationEntityType, key)) { if (AirtableCommentNotificationEntityType[key] === value) { return true; } } } return false; } export function AirtableCommentNotificationEntityTypeFromJSON(json) { return AirtableCommentNotificationEntityTypeFromJSONTyped(json, false); } export function AirtableCommentNotificationEntityTypeFromJSONTyped(json, ignoreDiscriminator) { return json; } export function AirtableCommentNotificationEntityTypeToJSON(value) { return value; } export function AirtableCommentNotificationEntityTypeToJSONTyped(value, ignoreDiscriminator) { return value; }