UNPKG

fastcomments-sdk

Version:

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

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