/** * 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 { LotteryResult } from './LotteryResult'; /** * * @export * @interface Lottery */ export interface Lottery extends BaseDraw { /** * * @type {Array} * @memberof Lottery */ participants: Array; /** * * @type {number} * @memberof Lottery */ numberOfResults?: number; /** * * @type {Array} * @memberof Lottery */ readonly results: Array; } /** * Check if a given object implements the Lottery interface. */ export declare function instanceOfLottery(value: object): value is Lottery; export declare function LotteryFromJSON(json: any): Lottery; export declare function LotteryFromJSONTyped(json: any, ignoreDiscriminator: boolean): Lottery; export declare function LotteryToJSON(value?: Omit | null): any;