@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
64 lines • 2.23 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 SoSAirtableCommentNotificationEntityBase
*/
export interface SoSAirtableCommentNotificationEntityBase {
/**
* Type of notification
* @type {AirtableCommentNotificationEntityType}
* @memberof SoSAirtableCommentNotificationEntityBase
*/
type: AirtableCommentNotificationEntityType;
/**
*
* @type {number}
* @memberof SoSAirtableCommentNotificationEntityBase
*/
id: number;
/**
*
* @type {string}
* @memberof SoSAirtableCommentNotificationEntityBase
*/
userId: string;
/**
*
* @type {number}
* @memberof SoSAirtableCommentNotificationEntityBase
*/
commentId: number;
/**
*
* @type {boolean}
* @memberof SoSAirtableCommentNotificationEntityBase
*/
read: boolean;
/**
*
* @type {Date}
* @memberof SoSAirtableCommentNotificationEntityBase
*/
createdAt: string;
}
/**
* Check if a given object implements the SoSAirtableCommentNotificationEntityBase interface.
*/
export declare function instanceOfSoSAirtableCommentNotificationEntityBase(value: object): value is SoSAirtableCommentNotificationEntityBase;
export declare function SoSAirtableCommentNotificationEntityBaseFromJSON(json: any): SoSAirtableCommentNotificationEntityBase;
export declare function SoSAirtableCommentNotificationEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSAirtableCommentNotificationEntityBase;
export declare function SoSAirtableCommentNotificationEntityBaseToJSON(json: any): SoSAirtableCommentNotificationEntityBase;
export declare function SoSAirtableCommentNotificationEntityBaseToJSONTyped(value?: SoSAirtableCommentNotificationEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSAirtableCommentNotificationEntityBase.d.ts.map