@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
51 lines • 1.75 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.
*/
/**
*
* @export
* @interface AirtableCommentSubscriptionEntityBase
*/
export interface AirtableCommentSubscriptionEntityBase {
/**
*
* @type {string}
* @memberof AirtableCommentSubscriptionEntityBase
*/
userId: string;
/**
*
* @type {string}
* @memberof AirtableCommentSubscriptionEntityBase
*/
tableId: string;
/**
*
* @type {string}
* @memberof AirtableCommentSubscriptionEntityBase
*/
recordId: string;
/**
*
* @type {Date}
* @memberof AirtableCommentSubscriptionEntityBase
*/
createdAt: string;
}
/**
* Check if a given object implements the AirtableCommentSubscriptionEntityBase interface.
*/
export declare function instanceOfAirtableCommentSubscriptionEntityBase(value: object): value is AirtableCommentSubscriptionEntityBase;
export declare function AirtableCommentSubscriptionEntityBaseFromJSON(json: any): AirtableCommentSubscriptionEntityBase;
export declare function AirtableCommentSubscriptionEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AirtableCommentSubscriptionEntityBase;
export declare function AirtableCommentSubscriptionEntityBaseToJSON(json: any): AirtableCommentSubscriptionEntityBase;
export declare function AirtableCommentSubscriptionEntityBaseToJSONTyped(value?: AirtableCommentSubscriptionEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AirtableCommentSubscriptionEntityBase.d.ts.map