@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
75 lines • 2.04 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 SoSThreadEntityBase
*/
export interface SoSThreadEntityBase {
/**
* Unique thread identifier
* @type {number}
* @memberof SoSThreadEntityBase
*/
tid: number;
/**
* Property ID reference
* @type {string}
* @memberof SoSThreadEntityBase
*/
pid?: string;
/**
* Thread title
* @type {string}
* @memberof SoSThreadEntityBase
*/
title: string;
/**
* Initial thread content
* @type {string}
* @memberof SoSThreadEntityBase
*/
content?: string;
/**
* Lead ID reference
* @type {number}
* @memberof SoSThreadEntityBase
*/
leadId?: number;
/**
* User ID of the thread creator
* @type {string}
* @memberof SoSThreadEntityBase
*/
userId: string;
/**
* When the thread was created
* @type {Date}
* @memberof SoSThreadEntityBase
*/
createdAt?: string;
/**
* Array of tags associated with the thread
* @type {Array<string>}
* @memberof SoSThreadEntityBase
*/
tags: Array<string>;
}
/**
* Check if a given object implements the SoSThreadEntityBase interface.
*/
export declare function instanceOfSoSThreadEntityBase(value: object): value is SoSThreadEntityBase;
export declare function SoSThreadEntityBaseFromJSON(json: any): SoSThreadEntityBase;
export declare function SoSThreadEntityBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSThreadEntityBase;
export declare function SoSThreadEntityBaseToJSON(json: any): SoSThreadEntityBase;
export declare function SoSThreadEntityBaseToJSONTyped(value?: SoSThreadEntityBase | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SoSThreadEntityBase.d.ts.map