/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.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 { ParticipantField } from './ParticipantField'; import type { BaseDraw } from './BaseDraw'; import type { GroupsResult } from './GroupsResult'; /** * * @export * @interface Groups */ export interface Groups extends BaseDraw { /** * * @type {Array} * @memberof Groups */ participants: Array; /** * * @type {number} * @memberof Groups */ numberOfGroups: number; /** * * @type {Array} * @memberof Groups */ readonly results: Array; } /** * Check if a given object implements the Groups interface. */ export declare function instanceOfGroups(value: object): value is Groups; export declare function GroupsFromJSON(json: any): Groups; export declare function GroupsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Groups; export declare function GroupsToJSON(value?: Omit | null): any;