fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
52 lines • 1.45 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 { AggregationOperation } from './aggregation-operation';
import type { AggregationRequestSort } from './aggregation-request-sort';
import type { QueryPredicate } from './query-predicate';
/**
* The aggregation request accepts a resource, optional grouping keys, an array of operations, and an optional sort
* @export
* @interface AggregationRequest
*/
export interface AggregationRequest {
/**
*
* @type {Array<QueryPredicate>}
* @memberof AggregationRequest
*/
'query'?: Array<QueryPredicate>;
/**
*
* @type {string}
* @memberof AggregationRequest
*/
'resourceName': string;
/**
*
* @type {Array<string>}
* @memberof AggregationRequest
*/
'groupBy'?: Array<string>;
/**
*
* @type {Array<AggregationOperation>}
* @memberof AggregationRequest
*/
'operations': Array<AggregationOperation>;
/**
*
* @type {AggregationRequestSort}
* @memberof AggregationRequest
*/
'sort'?: AggregationRequestSort;
}
//# sourceMappingURL=aggregation-request.d.ts.map