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 DeleteQuestionResultResponse */ export interface DeleteQuestionResultResponse { /** * * @type {APIStatus} * @memberof DeleteQuestionResultResponse */ status: APIStatus; /** * * @type {string} * @memberof DeleteQuestionResultResponse */ reason: string; /** * * @type {string} * @memberof DeleteQuestionResultResponse */ code: string; /** * * @type {string} * @memberof DeleteQuestionResultResponse */ secondaryCode?: string; /** * * @type {number} * @memberof DeleteQuestionResultResponse */ bannedUntil?: number; /** * * @type {number} * @memberof DeleteQuestionResultResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof DeleteQuestionResultResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof DeleteQuestionResultResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the DeleteQuestionResultResponse interface. */ export declare function instanceOfDeleteQuestionResultResponse(value: object): value is DeleteQuestionResultResponse; export declare function DeleteQuestionResultResponseFromJSON(json: any): DeleteQuestionResultResponse; export declare function DeleteQuestionResultResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteQuestionResultResponse; export declare function DeleteQuestionResultResponseToJSON(json: any): DeleteQuestionResultResponse; export declare function DeleteQuestionResultResponseToJSONTyped(value?: DeleteQuestionResultResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DeleteQuestionResultResponse.d.ts.map