/** * 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 { BaseFieldsCreate } from './BaseFieldsCreate'; import type { ParticipantField } from './ParticipantField'; /** * * @export * @interface CreateGroupsPayload */ export interface CreateGroupsPayload extends BaseFieldsCreate { /** * * @type {Array} * @memberof CreateGroupsPayload */ participants: Array; /** * * @type {number} * @memberof CreateGroupsPayload */ numberOfGroups: number; } /** * Check if a given object implements the CreateGroupsPayload interface. */ export declare function instanceOfCreateGroupsPayload(value: object): value is CreateGroupsPayload; export declare function CreateGroupsPayloadFromJSON(json: any): CreateGroupsPayload; export declare function CreateGroupsPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateGroupsPayload; export declare function CreateGroupsPayloadToJSON(value?: CreateGroupsPayload | null): any;