UNPKG

fastcomments-sdk

Version:

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

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