UNPKG

fastcomments-sdk

Version:

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

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