UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

57 lines 1.81 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 V4ThreadsCreateThreadBodyDto */ export interface V4ThreadsCreateThreadBodyDto { /** * Thread title * @type {string} * @memberof V4ThreadsCreateThreadBodyDto */ title?: string; /** * Initial thread content * @type {string} * @memberof V4ThreadsCreateThreadBodyDto */ content?: string; /** * Lead ID reference * @type {number} * @memberof V4ThreadsCreateThreadBodyDto */ leadId?: number; /** * Array of tags associated with the thread * @type {Array<string>} * @memberof V4ThreadsCreateThreadBodyDto */ tags?: Array<string>; /** * * @type {string} * @memberof V4ThreadsCreateThreadBodyDto */ propertyId?: string; } /** * Check if a given object implements the V4ThreadsCreateThreadBodyDto interface. */ export declare function instanceOfV4ThreadsCreateThreadBodyDto(value: object): value is V4ThreadsCreateThreadBodyDto; export declare function V4ThreadsCreateThreadBodyDtoFromJSON(json: any): V4ThreadsCreateThreadBodyDto; export declare function V4ThreadsCreateThreadBodyDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ThreadsCreateThreadBodyDto; export declare function V4ThreadsCreateThreadBodyDtoToJSON(json: any): V4ThreadsCreateThreadBodyDto; export declare function V4ThreadsCreateThreadBodyDtoToJSONTyped(value?: V4ThreadsCreateThreadBodyDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ThreadsCreateThreadBodyDto.d.ts.map