/** * 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 CreateTournamentPayload */ export interface CreateTournamentPayload extends BaseFieldsCreate { /** * * @type {Array} * @memberof CreateTournamentPayload */ participants: Array; } /** * Check if a given object implements the CreateTournamentPayload interface. */ export declare function instanceOfCreateTournamentPayload(value: object): value is CreateTournamentPayload; export declare function CreateTournamentPayloadFromJSON(json: any): CreateTournamentPayload; export declare function CreateTournamentPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTournamentPayload; export declare function CreateTournamentPayloadToJSON(value?: CreateTournamentPayload | null): any;