@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
46 lines • 2.11 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.
*/
import type { AirtableCommentNotificationEntityType } from './AirtableCommentNotificationEntityType';
/**
*
* @export
* @interface V4AirtableCommentNotificationsUpdateNotificationBody
*/
export interface V4AirtableCommentNotificationsUpdateNotificationBody {
/**
* Type of notification
* @type {AirtableCommentNotificationEntityType}
* @memberof V4AirtableCommentNotificationsUpdateNotificationBody
*/
type?: AirtableCommentNotificationEntityType;
/**
* Whether the notification has been read
* @type {boolean}
* @memberof V4AirtableCommentNotificationsUpdateNotificationBody
*/
read?: boolean;
/**
*
* @type {number}
* @memberof V4AirtableCommentNotificationsUpdateNotificationBody
*/
commentId?: number;
}
/**
* Check if a given object implements the V4AirtableCommentNotificationsUpdateNotificationBody interface.
*/
export declare function instanceOfV4AirtableCommentNotificationsUpdateNotificationBody(value: object): value is V4AirtableCommentNotificationsUpdateNotificationBody;
export declare function V4AirtableCommentNotificationsUpdateNotificationBodyFromJSON(json: any): V4AirtableCommentNotificationsUpdateNotificationBody;
export declare function V4AirtableCommentNotificationsUpdateNotificationBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4AirtableCommentNotificationsUpdateNotificationBody;
export declare function V4AirtableCommentNotificationsUpdateNotificationBodyToJSON(json: any): V4AirtableCommentNotificationsUpdateNotificationBody;
export declare function V4AirtableCommentNotificationsUpdateNotificationBodyToJSONTyped(value?: V4AirtableCommentNotificationsUpdateNotificationBody | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4AirtableCommentNotificationsUpdateNotificationBody.d.ts.map