UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

51 lines 1.8 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. */ /** * * @export * @interface SoSAirtableCommentSubscriptionEntityBase */ export interface SoSAirtableCommentSubscriptionEntityBase { /** * * @type {string} * @memberof SoSAirtableCommentSubscriptionEntityBase */ userId: string; /** * * @type {string} * @memberof SoSAirtableCommentSubscriptionEntityBase */ tableId: string; /** * * @type {string} * @memberof SoSAirtableCommentSubscriptionEntityBase */ recordId: string; /** * * @type {Date} * @memberof SoSAirtableCommentSubscriptionEntityBase */ createdAt: string; } /** * Check if a given object implements the SoSAirtableCommentSubscriptionEntityBase interface. */ export declare function instanceOfSoSAirtableCommentSubscriptionEntityBase(value: object): value is SoSAirtableCommentSubscriptionEntityBase; export declare function SoSAirtableCommentSubscriptionEntityBaseFromJSON(json: any): SoSAirtableCommentSubscriptionEntityBase; export declare function SoSAirtableCommentSubscriptionEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSAirtableCommentSubscriptionEntityBase; export declare function SoSAirtableCommentSubscriptionEntityBaseToJSON(json: any): SoSAirtableCommentSubscriptionEntityBase; export declare function SoSAirtableCommentSubscriptionEntityBaseToJSONTyped(value?: SoSAirtableCommentSubscriptionEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSAirtableCommentSubscriptionEntityBase.d.ts.map