UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

86 lines 2.92 kB
/** * 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 BulkAggregateQuestionResults200Response */ export interface BulkAggregateQuestionResults200Response { /** * * @type {APIStatus} * @memberof BulkAggregateQuestionResults200Response */ status: APIStatus; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: QuestionResultAggregationOverall; }} * @memberof BulkAggregateQuestionResults200Response */ data: { [key: string]: QuestionResultAggregationOverall; }; /** * * @type {string} * @memberof BulkAggregateQuestionResults200Response */ reason: string; /** * * @type {string} * @memberof BulkAggregateQuestionResults200Response */ code: string; /** * * @type {string} * @memberof BulkAggregateQuestionResults200Response */ secondaryCode?: string; /** * * @type {number} * @memberof BulkAggregateQuestionResults200Response */ bannedUntil?: number; /** * * @type {number} * @memberof BulkAggregateQuestionResults200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof BulkAggregateQuestionResults200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof BulkAggregateQuestionResults200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the BulkAggregateQuestionResults200Response interface. */ export declare function instanceOfBulkAggregateQuestionResults200Response(value: object): value is BulkAggregateQuestionResults200Response; export declare function BulkAggregateQuestionResults200ResponseFromJSON(json: any): BulkAggregateQuestionResults200Response; export declare function BulkAggregateQuestionResults200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BulkAggregateQuestionResults200Response; export declare function BulkAggregateQuestionResults200ResponseToJSON(json: any): BulkAggregateQuestionResults200Response; export declare function BulkAggregateQuestionResults200ResponseToJSONTyped(value?: BulkAggregateQuestionResults200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BulkAggregateQuestionResults200Response.d.ts.map