UNPKG

fastcomments-sdk

Version:

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

77 lines 2.31 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'; /** * * @export * @interface UpdateQuestionResultResponse */ export interface UpdateQuestionResultResponse { /** * * @type {APIStatus} * @memberof UpdateQuestionResultResponse */ status: APIStatus; /** * * @type {string} * @memberof UpdateQuestionResultResponse */ reason: string; /** * * @type {string} * @memberof UpdateQuestionResultResponse */ code: string; /** * * @type {string} * @memberof UpdateQuestionResultResponse */ secondaryCode?: string; /** * * @type {number} * @memberof UpdateQuestionResultResponse */ bannedUntil?: number; /** * * @type {number} * @memberof UpdateQuestionResultResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof UpdateQuestionResultResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UpdateQuestionResultResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UpdateQuestionResultResponse interface. */ export declare function instanceOfUpdateQuestionResultResponse(value: object): value is UpdateQuestionResultResponse; export declare function UpdateQuestionResultResponseFromJSON(json: any): UpdateQuestionResultResponse; export declare function UpdateQuestionResultResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateQuestionResultResponse; export declare function UpdateQuestionResultResponseToJSON(json: any): UpdateQuestionResultResponse; export declare function UpdateQuestionResultResponseToJSONTyped(value?: UpdateQuestionResultResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateQuestionResultResponse.d.ts.map