UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

64 lines 2.17 kB
/** * 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 AirtableCommentNotificationEntityBase */ export interface AirtableCommentNotificationEntityBase { /** * Type of notification * @type {AirtableCommentNotificationEntityType} * @memberof AirtableCommentNotificationEntityBase */ type: AirtableCommentNotificationEntityType; /** * * @type {number} * @memberof AirtableCommentNotificationEntityBase */ id: number; /** * * @type {string} * @memberof AirtableCommentNotificationEntityBase */ userId: string; /** * * @type {number} * @memberof AirtableCommentNotificationEntityBase */ commentId: number; /** * * @type {boolean} * @memberof AirtableCommentNotificationEntityBase */ read: boolean; /** * * @type {Date} * @memberof AirtableCommentNotificationEntityBase */ createdAt: string; } /** * Check if a given object implements the AirtableCommentNotificationEntityBase interface. */ export declare function instanceOfAirtableCommentNotificationEntityBase(value: object): value is AirtableCommentNotificationEntityBase; export declare function AirtableCommentNotificationEntityBaseFromJSON(json: any): AirtableCommentNotificationEntityBase; export declare function AirtableCommentNotificationEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AirtableCommentNotificationEntityBase; export declare function AirtableCommentNotificationEntityBaseToJSON(json: any): AirtableCommentNotificationEntityBase; export declare function AirtableCommentNotificationEntityBaseToJSONTyped(value?: AirtableCommentNotificationEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AirtableCommentNotificationEntityBase.d.ts.map