UNPKG

fastcomments-sdk

Version:

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

84 lines 2.54 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 GetQuestionResults200Response */ export interface GetQuestionResults200Response { /** * * @type {APIStatus} * @memberof GetQuestionResults200Response */ status: APIStatus; /** * * @type {Array<QuestionResult>} * @memberof GetQuestionResults200Response */ questionResults: Array<QuestionResult>; /** * * @type {string} * @memberof GetQuestionResults200Response */ reason: string; /** * * @type {string} * @memberof GetQuestionResults200Response */ code: string; /** * * @type {string} * @memberof GetQuestionResults200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetQuestionResults200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetQuestionResults200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetQuestionResults200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetQuestionResults200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetQuestionResults200Response interface. */ export declare function instanceOfGetQuestionResults200Response(value: object): value is GetQuestionResults200Response; export declare function GetQuestionResults200ResponseFromJSON(json: any): GetQuestionResults200Response; export declare function GetQuestionResults200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQuestionResults200Response; export declare function GetQuestionResults200ResponseToJSON(json: any): GetQuestionResults200Response; export declare function GetQuestionResults200ResponseToJSONTyped(value?: GetQuestionResults200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetQuestionResults200Response.d.ts.map