/** * 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 { SecretSantaAdminResponseParticipantsInner } from './SecretSantaAdminResponseParticipantsInner'; /** * * @export * @interface SecretSantaAdminResponse */ export interface SecretSantaAdminResponse { /** * * @type {string} * @memberof SecretSantaAdminResponse */ id: string; /** * * @type {Date} * @memberof SecretSantaAdminResponse */ createdAt: Date; /** * * @type {Array} * @memberof SecretSantaAdminResponse */ payments: Array; /** * * @type {Array} * @memberof SecretSantaAdminResponse */ participants: Array; } /** * @export */ export declare const SecretSantaAdminResponsePaymentsEnum: { readonly Certified: "CERTIFIED"; readonly Adfree: "ADFREE"; readonly Support: "SUPPORT"; }; export type SecretSantaAdminResponsePaymentsEnum = typeof SecretSantaAdminResponsePaymentsEnum[keyof typeof SecretSantaAdminResponsePaymentsEnum]; /** * Check if a given object implements the SecretSantaAdminResponse interface. */ export declare function instanceOfSecretSantaAdminResponse(value: object): value is SecretSantaAdminResponse; export declare function SecretSantaAdminResponseFromJSON(json: any): SecretSantaAdminResponse; export declare function SecretSantaAdminResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretSantaAdminResponse; export declare function SecretSantaAdminResponseToJSON(value?: SecretSantaAdminResponse | null): any;