UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

48 lines (47 loc) 1.87 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. */ import { AirtableCommentNotificationEntityTypeFromJSON, AirtableCommentNotificationEntityTypeToJSON, } from './AirtableCommentNotificationEntityType'; /** * Check if a given object implements the V4AirtableCommentNotificationsUpdateNotificationBody interface. */ export function instanceOfV4AirtableCommentNotificationsUpdateNotificationBody(value) { return true; } export function V4AirtableCommentNotificationsUpdateNotificationBodyFromJSON(json) { return V4AirtableCommentNotificationsUpdateNotificationBodyFromJSONTyped(json, false); } export function V4AirtableCommentNotificationsUpdateNotificationBodyFromJSONTyped(json, ignoreDiscriminator) { if (json == null) { return json; } return { ...json, // Preserve relation fields from views 'type': json['type'] == null ? undefined : AirtableCommentNotificationEntityTypeFromJSON(json['type']), 'read': json['read'] == null ? undefined : json['read'], 'commentId': json['commentId'] == null ? undefined : json['commentId'], }; } export function V4AirtableCommentNotificationsUpdateNotificationBodyToJSON(json) { return V4AirtableCommentNotificationsUpdateNotificationBodyToJSONTyped(json, false); } export function V4AirtableCommentNotificationsUpdateNotificationBodyToJSONTyped(value, ignoreDiscriminator = false) { if (value == null) { return value; } return { 'type': AirtableCommentNotificationEntityTypeToJSON(value['type']), 'read': value['read'], 'commentId': value['commentId'], }; }