/** * 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 { BaseDraw } from './BaseDraw'; import type { InstagramResult } from './InstagramResult'; import type { PrizeField } from './PrizeField'; /** * * @export * @interface Instagram */ export interface Instagram extends BaseDraw { /** * * @type {Array} * @memberof Instagram */ prizes: Array; /** * * @type {boolean} * @memberof Instagram */ useLikes: boolean; /** * * @type {number} * @memberof Instagram */ minMentions: number; /** * * @type {string} * @memberof Instagram */ postUrl: string; /** * * @type {Array} * @memberof Instagram */ readonly results: Array; } /** * Check if a given object implements the Instagram interface. */ export declare function instanceOfInstagram(value: object): value is Instagram; export declare function InstagramFromJSON(json: any): Instagram; export declare function InstagramFromJSONTyped(json: any, ignoreDiscriminator: boolean): Instagram; export declare function InstagramToJSON(value?: Omit | null): any;