@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
93 lines • 2.3 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 AirtableCommentEntityBase
*/
export interface AirtableCommentEntityBase {
/**
*
* @type {number}
* @memberof AirtableCommentEntityBase
*/
id: number;
/**
*
* @type {string}
* @memberof AirtableCommentEntityBase
*/
tableId: string;
/**
*
* @type {string}
* @memberof AirtableCommentEntityBase
*/
recordId: string;
/**
*
* @type {string}
* @memberof AirtableCommentEntityBase
*/
tableName?: string;
/**
*
* @type {string}
* @memberof AirtableCommentEntityBase
*/
recordName?: string;
/**
*
* @type {string}
* @memberof AirtableCommentEntityBase
*/
propertyId: string;
/**
*
* @type {string}
* @memberof AirtableCommentEntityBase
*/
content: string;
/**
*
* @type {string}
* @memberof AirtableCommentEntityBase
*/
userId: string;
/**
*
* @type {Date}
* @memberof AirtableCommentEntityBase
*/
createdAt: string;
/**
*
* @type {Date}
* @memberof AirtableCommentEntityBase
*/
updatedAt: string;
/**
*
* @type {Date}
* @memberof AirtableCommentEntityBase
*/
deletedAt?: string;
}
/**
* Check if a given object implements the AirtableCommentEntityBase interface.
*/
export declare function instanceOfAirtableCommentEntityBase(value: object): value is AirtableCommentEntityBase;
export declare function AirtableCommentEntityBaseFromJSON(json: any): AirtableCommentEntityBase;
export declare function AirtableCommentEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AirtableCommentEntityBase;
export declare function AirtableCommentEntityBaseToJSON(json: any): AirtableCommentEntityBase;
export declare function AirtableCommentEntityBaseToJSONTyped(value?: AirtableCommentEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AirtableCommentEntityBase.d.ts.map