/** * 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 SecretSantaAdminResponseParticipantsInner */ export interface SecretSantaAdminResponseParticipantsInner { /** * * @type {string} * @memberof SecretSantaAdminResponseParticipantsInner */ id: string; /** * * @type {string} * @memberof SecretSantaAdminResponseParticipantsInner */ name: string; /** * * @type {boolean} * @memberof SecretSantaAdminResponseParticipantsInner */ revealed: boolean; } /** * Check if a given object implements the SecretSantaAdminResponseParticipantsInner interface. */ export declare function instanceOfSecretSantaAdminResponseParticipantsInner(value: object): value is SecretSantaAdminResponseParticipantsInner; export declare function SecretSantaAdminResponseParticipantsInnerFromJSON(json: any): SecretSantaAdminResponseParticipantsInner; export declare function SecretSantaAdminResponseParticipantsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretSantaAdminResponseParticipantsInner; export declare function SecretSantaAdminResponseParticipantsInnerToJSON(value?: SecretSantaAdminResponseParticipantsInner | null): any;