UNPKG

fastcomments-sdk

Version:

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

77 lines 2.2 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 PutReopenThreadResponse */ export interface PutReopenThreadResponse { /** * * @type {APIStatus} * @memberof PutReopenThreadResponse */ status: APIStatus; /** * * @type {string} * @memberof PutReopenThreadResponse */ reason: string; /** * * @type {string} * @memberof PutReopenThreadResponse */ code: string; /** * * @type {string} * @memberof PutReopenThreadResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PutReopenThreadResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PutReopenThreadResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PutReopenThreadResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PutReopenThreadResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PutReopenThreadResponse interface. */ export declare function instanceOfPutReopenThreadResponse(value: object): value is PutReopenThreadResponse; export declare function PutReopenThreadResponseFromJSON(json: any): PutReopenThreadResponse; export declare function PutReopenThreadResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PutReopenThreadResponse; export declare function PutReopenThreadResponseToJSON(json: any): PutReopenThreadResponse; export declare function PutReopenThreadResponseToJSONTyped(value?: PutReopenThreadResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PutReopenThreadResponse.d.ts.map