/** * 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. */ /** * * @export * @interface ParticipantField */ export interface ParticipantField { /** * * @type {string} * @memberof ParticipantField */ name: string; /** * * @type {string} * @memberof ParticipantField */ facebookId?: string; } /** * Check if a given object implements the ParticipantField interface. */ export declare function instanceOfParticipantField(value: object): value is ParticipantField; export declare function ParticipantFieldFromJSON(json: any): ParticipantField; export declare function ParticipantFieldFromJSONTyped(json: any, ignoreDiscriminator: boolean): ParticipantField; export declare function ParticipantFieldToJSON(value?: ParticipantField | null): any;