UNPKG

fastcomments-sdk

Version:

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

43 lines 1.87 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 { APIStatus } from './APIStatus'; import type { QuestionResultAggregationOverall } from './QuestionResultAggregationOverall'; /** * * @export * @interface BulkAggregateQuestionResultsResponse */ export interface BulkAggregateQuestionResultsResponse { /** * * @type {APIStatus} * @memberof BulkAggregateQuestionResultsResponse */ status: APIStatus; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: QuestionResultAggregationOverall; }} * @memberof BulkAggregateQuestionResultsResponse */ data: { [key: string]: QuestionResultAggregationOverall; }; } /** * Check if a given object implements the BulkAggregateQuestionResultsResponse interface. */ export declare function instanceOfBulkAggregateQuestionResultsResponse(value: object): value is BulkAggregateQuestionResultsResponse; export declare function BulkAggregateQuestionResultsResponseFromJSON(json: any): BulkAggregateQuestionResultsResponse; export declare function BulkAggregateQuestionResultsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BulkAggregateQuestionResultsResponse; export declare function BulkAggregateQuestionResultsResponseToJSON(json: any): BulkAggregateQuestionResultsResponse; export declare function BulkAggregateQuestionResultsResponseToJSONTyped(value?: BulkAggregateQuestionResultsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BulkAggregateQuestionResultsResponse.d.ts.map