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