UNPKG

fastcomments-sdk

Version:

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

84 lines 2.5 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 { QuestionConfig } from './QuestionConfig'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetQuestionConfig200Response */ export interface GetQuestionConfig200Response { /** * * @type {APIStatus} * @memberof GetQuestionConfig200Response */ status: APIStatus; /** * * @type {QuestionConfig} * @memberof GetQuestionConfig200Response */ questionConfig: QuestionConfig; /** * * @type {string} * @memberof GetQuestionConfig200Response */ reason: string; /** * * @type {string} * @memberof GetQuestionConfig200Response */ code: string; /** * * @type {string} * @memberof GetQuestionConfig200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetQuestionConfig200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetQuestionConfig200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetQuestionConfig200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetQuestionConfig200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetQuestionConfig200Response interface. */ export declare function instanceOfGetQuestionConfig200Response(value: object): value is GetQuestionConfig200Response; export declare function GetQuestionConfig200ResponseFromJSON(json: any): GetQuestionConfig200Response; export declare function GetQuestionConfig200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQuestionConfig200Response; export declare function GetQuestionConfig200ResponseToJSON(json: any): GetQuestionConfig200Response; export declare function GetQuestionConfig200ResponseToJSONTyped(value?: GetQuestionConfig200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetQuestionConfig200Response.d.ts.map