UNPKG

fastcomments-sdk

Version:

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

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