UNPKG

@hubbleprotocol/carpool-typescript-client

Version:

OpenAPI TypeScript client for Carpool

45 lines (44 loc) 1.19 kB
/* tslint:disable */ /* eslint-disable */ /** * Carpool Query * The Carpool Query API * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * * @export * @interface AccountsAggregateRequest */ export interface AccountsAggregateRequest { /** * An elasticsearch aggregation. * @type {any} * @memberof AccountsAggregateRequest */ aggregation: any; /** * AND queries - An array of elasticsearch conditions which must ALL match. Supports nesting. * @type {Array<object>} * @memberof AccountsAggregateRequest */ must?: Array<object>; /** * NOR queries - An array of elasticsearch conditions which must ALL NOT match. Supports nesting. * @type {Array<object>} * @memberof AccountsAggregateRequest */ mustNot?: Array<object>; /** * OR querires - An array of elasticsearch conditions of which, at least ONE must match. Supports nesting. * @type {Array<object>} * @memberof AccountsAggregateRequest */ should?: Array<object>; }