/** * 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 { BaseResult } from './BaseResult'; import type { Participant } from './Participant'; /** * * @export * @interface LotteryResult */ export interface LotteryResult extends BaseResult { /** * * @type {Array} * @memberof LotteryResult */ value?: Array | null; } /** * Check if a given object implements the LotteryResult interface. */ export declare function instanceOfLotteryResult(value: object): value is LotteryResult; export declare function LotteryResultFromJSON(json: any): LotteryResult; export declare function LotteryResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): LotteryResult; export declare function LotteryResultToJSON(value?: Omit | null): any;