UNPKG

fastcomments-sdk

Version:

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

44 lines 1.16 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 { AggregationOpType } from './aggregation-op-type'; /** * An operation that will be applied on a field * @export * @interface AggregationOperation */ export interface AggregationOperation { /** * The field to operate on * @type {string} * @memberof AggregationOperation */ 'field': string; /** * * @type {AggregationOpType} * @memberof AggregationOperation */ 'op': AggregationOpType; /** * Optional alias for the output; if not provided, a default alias is computed * @type {string} * @memberof AggregationOperation */ 'alias'?: string; /** * * @type {boolean} * @memberof AggregationOperation */ 'expandArray'?: boolean; } //# sourceMappingURL=aggregation-operation.d.ts.map