/** * 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 { Participant } from './Participant'; /** * * @export * @interface TournamentResultAllOfValue */ export interface TournamentResultAllOfValue { /** * * @type {string} * @memberof TournamentResultAllOfValue */ id?: string; /** * * @type {Array} * @memberof TournamentResultAllOfValue */ participants?: Array; /** * * @type {string} * @memberof TournamentResultAllOfValue */ score?: string; /** * * @type {string} * @memberof TournamentResultAllOfValue */ winnerId?: string; /** * * @type {string} * @memberof TournamentResultAllOfValue */ nextMatchId?: string; } /** * Check if a given object implements the TournamentResultAllOfValue interface. */ export declare function instanceOfTournamentResultAllOfValue(value: object): value is TournamentResultAllOfValue; export declare function TournamentResultAllOfValueFromJSON(json: any): TournamentResultAllOfValue; export declare function TournamentResultAllOfValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): TournamentResultAllOfValue; export declare function TournamentResultAllOfValueToJSON(value?: TournamentResultAllOfValue | null): any;