UNPKG

fastcomments-sdk

Version:

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

40 lines 1.13 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 { AggregationItem } from './aggregation-item'; import type { AggregationResponseStats } from './aggregation-response-stats'; /** * The API response returns the aggregated data along with simple stats * @export * @interface AggregationResponse */ export interface AggregationResponse { /** * * @type {APIStatus} * @memberof AggregationResponse */ 'status': APIStatus; /** * * @type {Array<AggregationItem>} * @memberof AggregationResponse */ 'data': Array<AggregationItem>; /** * * @type {AggregationResponseStats} * @memberof AggregationResponse */ 'stats'?: AggregationResponseStats; } //# sourceMappingURL=aggregation-response.d.ts.map