fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
113 lines • 2.94 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 { QuestionConfigCustomOptionsInner } from './QuestionConfigCustomOptionsInner';
/**
*
* @export
* @interface UpdateQuestionConfigBody
*/
export interface UpdateQuestionConfigBody {
[key: string]: any | any;
/**
*
* @type {string}
* @memberof UpdateQuestionConfigBody
*/
name?: string;
/**
*
* @type {string}
* @memberof UpdateQuestionConfigBody
*/
question?: string;
/**
*
* @type {string}
* @memberof UpdateQuestionConfigBody
*/
helpText?: string;
/**
*
* @type {string}
* @memberof UpdateQuestionConfigBody
*/
type?: string;
/**
*
* @type {number}
* @memberof UpdateQuestionConfigBody
*/
numStars?: number;
/**
*
* @type {number}
* @memberof UpdateQuestionConfigBody
*/
min?: number;
/**
*
* @type {number}
* @memberof UpdateQuestionConfigBody
*/
max?: number;
/**
*
* @type {number}
* @memberof UpdateQuestionConfigBody
*/
defaultValue?: number;
/**
*
* @type {string}
* @memberof UpdateQuestionConfigBody
*/
labelNegative?: string;
/**
*
* @type {string}
* @memberof UpdateQuestionConfigBody
*/
labelPositive?: string;
/**
*
* @type {Array<QuestionConfigCustomOptionsInner>}
* @memberof UpdateQuestionConfigBody
*/
customOptions?: Array<QuestionConfigCustomOptionsInner>;
/**
*
* @type {Array<string>}
* @memberof UpdateQuestionConfigBody
*/
subQuestionIds?: Array<string>;
/**
*
* @type {boolean}
* @memberof UpdateQuestionConfigBody
*/
alwaysShowSubQuestions?: boolean;
/**
*
* @type {number}
* @memberof UpdateQuestionConfigBody
*/
reportingOrder?: number;
}
/**
* Check if a given object implements the UpdateQuestionConfigBody interface.
*/
export declare function instanceOfUpdateQuestionConfigBody(value: object): value is UpdateQuestionConfigBody;
export declare function UpdateQuestionConfigBodyFromJSON(json: any): UpdateQuestionConfigBody;
export declare function UpdateQuestionConfigBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateQuestionConfigBody;
export declare function UpdateQuestionConfigBodyToJSON(json: any): UpdateQuestionConfigBody;
export declare function UpdateQuestionConfigBodyToJSONTyped(value?: UpdateQuestionConfigBody | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UpdateQuestionConfigBody.d.ts.map