UNPKG

fastcomments-sdk

Version:

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

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