UNPKG

fastcomments-sdk

Version:

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

52 lines 1.75 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 './AggregationOpType'; /** * 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; } /** * Check if a given object implements the AggregationOperation interface. */ export declare function instanceOfAggregationOperation(value: object): value is AggregationOperation; export declare function AggregationOperationFromJSON(json: any): AggregationOperation; export declare function AggregationOperationFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregationOperation; export declare function AggregationOperationToJSON(json: any): AggregationOperation; export declare function AggregationOperationToJSONTyped(value?: AggregationOperation | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AggregationOperation.d.ts.map