fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.54 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 { QuestionConfig } from './QuestionConfig';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetQuestionConfigs200Response
*/
export interface GetQuestionConfigs200Response {
/**
*
* @type {APIStatus}
* @memberof GetQuestionConfigs200Response
*/
status: APIStatus;
/**
*
* @type {Array<QuestionConfig>}
* @memberof GetQuestionConfigs200Response
*/
questionConfigs: Array<QuestionConfig>;
/**
*
* @type {string}
* @memberof GetQuestionConfigs200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof GetQuestionConfigs200Response
*/
code: string;
/**
*
* @type {string}
* @memberof GetQuestionConfigs200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetQuestionConfigs200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetQuestionConfigs200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetQuestionConfigs200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetQuestionConfigs200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetQuestionConfigs200Response interface.
*/
export declare function instanceOfGetQuestionConfigs200Response(value: object): value is GetQuestionConfigs200Response;
export declare function GetQuestionConfigs200ResponseFromJSON(json: any): GetQuestionConfigs200Response;
export declare function GetQuestionConfigs200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQuestionConfigs200Response;
export declare function GetQuestionConfigs200ResponseToJSON(json: any): GetQuestionConfigs200Response;
export declare function GetQuestionConfigs200ResponseToJSONTyped(value?: GetQuestionConfigs200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetQuestionConfigs200Response.d.ts.map