/** * 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 { InstagramResultAllOfValue } from './InstagramResultAllOfValue'; /** * * @export * @interface InstagramResult */ export interface InstagramResult extends BaseResult { /** * * @type {Array} * @memberof InstagramResult */ value?: Array | null; } /** * Check if a given object implements the InstagramResult interface. */ export declare function instanceOfInstagramResult(value: object): value is InstagramResult; export declare function InstagramResultFromJSON(json: any): InstagramResult; export declare function InstagramResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): InstagramResult; export declare function InstagramResultToJSON(value?: Omit | null): any;