UNPKG

fastcomments-sdk

Version:

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

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