/** * 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 CreateSecretSantaPayloadParticipantsInner */ export interface CreateSecretSantaPayloadParticipantsInner { /** * * @type {string} * @memberof CreateSecretSantaPayloadParticipantsInner */ name: string; /** * * @type {string} * @memberof CreateSecretSantaPayloadParticipantsInner */ email?: string; /** * * @type {string} * @memberof CreateSecretSantaPayloadParticipantsInner */ phoneNumber?: string; /** * * @type {Array} * @memberof CreateSecretSantaPayloadParticipantsInner */ exclusions: Array; } /** * Check if a given object implements the CreateSecretSantaPayloadParticipantsInner interface. */ export declare function instanceOfCreateSecretSantaPayloadParticipantsInner(value: object): value is CreateSecretSantaPayloadParticipantsInner; export declare function CreateSecretSantaPayloadParticipantsInnerFromJSON(json: any): CreateSecretSantaPayloadParticipantsInner; export declare function CreateSecretSantaPayloadParticipantsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateSecretSantaPayloadParticipantsInner; export declare function CreateSecretSantaPayloadParticipantsInnerToJSON(value?: CreateSecretSantaPayloadParticipantsInner | null): any;