UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

77 lines 2.17 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CustomConfigParameters } from './CustomConfigParameters'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface PutCloseThreadResponse */ export interface PutCloseThreadResponse { /** * * @type {APIStatus} * @memberof PutCloseThreadResponse */ status: APIStatus; /** * * @type {string} * @memberof PutCloseThreadResponse */ reason: string; /** * * @type {string} * @memberof PutCloseThreadResponse */ code: string; /** * * @type {string} * @memberof PutCloseThreadResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PutCloseThreadResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PutCloseThreadResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PutCloseThreadResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PutCloseThreadResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PutCloseThreadResponse interface. */ export declare function instanceOfPutCloseThreadResponse(value: object): value is PutCloseThreadResponse; export declare function PutCloseThreadResponseFromJSON(json: any): PutCloseThreadResponse; export declare function PutCloseThreadResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutCloseThreadResponse; export declare function PutCloseThreadResponseToJSON(json: any): PutCloseThreadResponse; export declare function PutCloseThreadResponseToJSONTyped(value?: PutCloseThreadResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PutCloseThreadResponse.d.ts.map