/** * 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 { Participant } from './Participant'; import type { Prize } from './Prize'; /** * * @export * @interface RaffleResultAllOfValue */ export interface RaffleResultAllOfValue { /** * * @type {Participant} * @memberof RaffleResultAllOfValue */ participant?: Participant; /** * * @type {Prize} * @memberof RaffleResultAllOfValue */ prize?: Prize; } /** * Check if a given object implements the RaffleResultAllOfValue interface. */ export declare function instanceOfRaffleResultAllOfValue(value: object): value is RaffleResultAllOfValue; export declare function RaffleResultAllOfValueFromJSON(json: any): RaffleResultAllOfValue; export declare function RaffleResultAllOfValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): RaffleResultAllOfValue; export declare function RaffleResultAllOfValueToJSON(value?: RaffleResultAllOfValue | null): any;