/** * 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 { PrizeField } from './PrizeField'; /** * * @export * @interface RaffleFields */ export interface RaffleFields { /** * * @type {Array} * @memberof RaffleFields */ prizes: Array; /** * * @type {Array} * @memberof RaffleFields */ participants: Array; } /** * Check if a given object implements the RaffleFields interface. */ export declare function instanceOfRaffleFields(value: object): value is RaffleFields; export declare function RaffleFieldsFromJSON(json: any): RaffleFields; export declare function RaffleFieldsFromJSONTyped(json: any, ignoreDiscriminator: boolean): RaffleFields; export declare function RaffleFieldsToJSON(value?: RaffleFields | null): any;