UNPKG

fastcomments-sdk

Version:

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

84 lines 2.52 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 CreateQuestionConfigResponse1 */ export interface CreateQuestionConfigResponse1 { /** * * @type {APIStatus} * @memberof CreateQuestionConfigResponse1 */ status: APIStatus; /** * * @type {QuestionConfig} * @memberof CreateQuestionConfigResponse1 */ questionConfig: QuestionConfig; /** * * @type {string} * @memberof CreateQuestionConfigResponse1 */ reason: string; /** * * @type {string} * @memberof CreateQuestionConfigResponse1 */ code: string; /** * * @type {string} * @memberof CreateQuestionConfigResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof CreateQuestionConfigResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof CreateQuestionConfigResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof CreateQuestionConfigResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof CreateQuestionConfigResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the CreateQuestionConfigResponse1 interface. */ export declare function instanceOfCreateQuestionConfigResponse1(value: object): value is CreateQuestionConfigResponse1; export declare function CreateQuestionConfigResponse1FromJSON(json: any): CreateQuestionConfigResponse1; export declare function CreateQuestionConfigResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateQuestionConfigResponse1; export declare function CreateQuestionConfigResponse1ToJSON(json: any): CreateQuestionConfigResponse1; export declare function CreateQuestionConfigResponse1ToJSONTyped(value?: CreateQuestionConfigResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateQuestionConfigResponse1.d.ts.map