/** * 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 { BaseObject } from './BaseObject'; /** * * @export * @interface Participant */ export interface Participant extends BaseObject { /** * * @type {string} * @memberof Participant */ name: string; /** * * @type {string} * @memberof Participant */ facebookId?: string; } /** * Check if a given object implements the Participant interface. */ export declare function instanceOfParticipant(value: object): value is Participant; export declare function ParticipantFromJSON(json: any): Participant; export declare function ParticipantFromJSONTyped(json: any, ignoreDiscriminator: boolean): Participant; export declare function ParticipantToJSON(value?: Omit | null): any;