/** * 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 { ParticipantField } from './ParticipantField'; import type { BaseDraw } from './BaseDraw'; import type { RaffleResult } from './RaffleResult'; import type { PrizeField } from './PrizeField'; /** * * @export * @interface Raffle */ export interface Raffle extends BaseDraw { /** * * @type {Array} * @memberof Raffle */ prizes: Array; /** * * @type {Array} * @memberof Raffle */ participants: Array; /** * * @type {Array} * @memberof Raffle */ readonly results: Array; } /** * Check if a given object implements the Raffle interface. */ export declare function instanceOfRaffle(value: object): value is Raffle; export declare function RaffleFromJSON(json: any): Raffle; export declare function RaffleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Raffle; export declare function RaffleToJSON(value?: Omit | null): any;