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 { APIStatus } from './APIStatus'; import type { QuestionResult } from './QuestionResult'; /** * * @export * @interface CreateQuestionResult200Response */ export interface CreateQuestionResult200Response { /** * * @type {APIStatus} * @memberof CreateQuestionResult200Response */ status: APIStatus; /** * * @type {QuestionResult} * @memberof CreateQuestionResult200Response */ questionResult: QuestionResult; /** * * @type {string} * @memberof CreateQuestionResult200Response */ reason: string; /** * * @type {string} * @memberof CreateQuestionResult200Response */ code: string; /** * * @type {string} * @memberof CreateQuestionResult200Response */ secondaryCode?: string; /** * * @type {number} * @memberof CreateQuestionResult200Response */ bannedUntil?: number; /** * * @type {number} * @memberof CreateQuestionResult200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof CreateQuestionResult200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof CreateQuestionResult200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the CreateQuestionResult200Response interface. */ export declare function instanceOfCreateQuestionResult200Response(value: object): value is CreateQuestionResult200Response; export declare function CreateQuestionResult200ResponseFromJSON(json: any): CreateQuestionResult200Response; export declare function CreateQuestionResult200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateQuestionResult200Response; export declare function CreateQuestionResult200ResponseToJSON(json: any): CreateQuestionResult200Response; export declare function CreateQuestionResult200ResponseToJSONTyped(value?: CreateQuestionResult200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateQuestionResult200Response.d.ts.map