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