fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
86 lines • 2.87 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';
import type { QuestionResultAggregationOverall } from './QuestionResultAggregationOverall';
/**
*
* @export
* @interface BulkAggregateQuestionResultsResponse1
*/
export interface BulkAggregateQuestionResultsResponse1 {
/**
*
* @type {APIStatus}
* @memberof BulkAggregateQuestionResultsResponse1
*/
status: APIStatus;
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: QuestionResultAggregationOverall; }}
* @memberof BulkAggregateQuestionResultsResponse1
*/
data: {
[key: string]: QuestionResultAggregationOverall;
};
/**
*
* @type {string}
* @memberof BulkAggregateQuestionResultsResponse1
*/
reason: string;
/**
*
* @type {string}
* @memberof BulkAggregateQuestionResultsResponse1
*/
code: string;
/**
*
* @type {string}
* @memberof BulkAggregateQuestionResultsResponse1
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof BulkAggregateQuestionResultsResponse1
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof BulkAggregateQuestionResultsResponse1
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof BulkAggregateQuestionResultsResponse1
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof BulkAggregateQuestionResultsResponse1
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the BulkAggregateQuestionResultsResponse1 interface.
*/
export declare function instanceOfBulkAggregateQuestionResultsResponse1(value: object): value is BulkAggregateQuestionResultsResponse1;
export declare function BulkAggregateQuestionResultsResponse1FromJSON(json: any): BulkAggregateQuestionResultsResponse1;
export declare function BulkAggregateQuestionResultsResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): BulkAggregateQuestionResultsResponse1;
export declare function BulkAggregateQuestionResultsResponse1ToJSON(json: any): BulkAggregateQuestionResultsResponse1;
export declare function BulkAggregateQuestionResultsResponse1ToJSONTyped(value?: BulkAggregateQuestionResultsResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=BulkAggregateQuestionResultsResponse1.d.ts.map