UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

57 lines 1.66 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 SoSCommentEntityBase */ export interface SoSCommentEntityBase { /** * Comment ID * @type {number} * @memberof SoSCommentEntityBase */ cid: number; /** * Thread ID this comment belongs to * @type {number} * @memberof SoSCommentEntityBase */ tid: number; /** * Comment content * @type {string} * @memberof SoSCommentEntityBase */ content: string; /** * User ID who created the comment * @type {string} * @memberof SoSCommentEntityBase */ uid?: string; /** * When the comment was created * @type {Date} * @memberof SoSCommentEntityBase */ createdAt?: string; } /** * Check if a given object implements the SoSCommentEntityBase interface. */ export declare function instanceOfSoSCommentEntityBase(value: object): value is SoSCommentEntityBase; export declare function SoSCommentEntityBaseFromJSON(json: any): SoSCommentEntityBase; export declare function SoSCommentEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSCommentEntityBase; export declare function SoSCommentEntityBaseToJSON(json: any): SoSCommentEntityBase; export declare function SoSCommentEntityBaseToJSONTyped(value?: SoSCommentEntityBase | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSCommentEntityBase.d.ts.map