UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

45 lines 1.53 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 V4ThreadsUpdateThreadBodyDto */ export interface V4ThreadsUpdateThreadBodyDto { /** * Thread title * @type {string} * @memberof V4ThreadsUpdateThreadBodyDto */ title?: string; /** * Phone number secondary * @type {string} * @memberof V4ThreadsUpdateThreadBodyDto */ content?: string; /** * Thread tags * @type {Array<string>} * @memberof V4ThreadsUpdateThreadBodyDto */ tags?: Array<string>; } /** * Check if a given object implements the V4ThreadsUpdateThreadBodyDto interface. */ export declare function instanceOfV4ThreadsUpdateThreadBodyDto(value: object): value is V4ThreadsUpdateThreadBodyDto; export declare function V4ThreadsUpdateThreadBodyDtoFromJSON(json: any): V4ThreadsUpdateThreadBodyDto; export declare function V4ThreadsUpdateThreadBodyDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ThreadsUpdateThreadBodyDto; export declare function V4ThreadsUpdateThreadBodyDtoToJSON(json: any): V4ThreadsUpdateThreadBodyDto; export declare function V4ThreadsUpdateThreadBodyDtoToJSONTyped(value?: V4ThreadsUpdateThreadBodyDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ThreadsUpdateThreadBodyDto.d.ts.map