fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
77 lines • 2.37 kB
TypeScript
/**
* 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 DeleteQuestionResult200Response
*/
export interface DeleteQuestionResult200Response {
/**
*
* @type {APIStatus}
* @memberof DeleteQuestionResult200Response
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof DeleteQuestionResult200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof DeleteQuestionResult200Response
*/
code: string;
/**
*
* @type {string}
* @memberof DeleteQuestionResult200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof DeleteQuestionResult200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof DeleteQuestionResult200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof DeleteQuestionResult200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof DeleteQuestionResult200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the DeleteQuestionResult200Response interface.
*/
export declare function instanceOfDeleteQuestionResult200Response(value: object): value is DeleteQuestionResult200Response;
export declare function DeleteQuestionResult200ResponseFromJSON(json: any): DeleteQuestionResult200Response;
export declare function DeleteQuestionResult200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteQuestionResult200Response;
export declare function DeleteQuestionResult200ResponseToJSON(json: any): DeleteQuestionResult200Response;
export declare function DeleteQuestionResult200ResponseToJSONTyped(value?: DeleteQuestionResult200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=DeleteQuestionResult200Response.d.ts.map