/** * 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 { InstagramResultAllOfComment } from './InstagramResultAllOfComment'; import type { Prize } from './Prize'; /** * * @export * @interface InstagramResultAllOfValue */ export interface InstagramResultAllOfValue { /** * * @type {InstagramResultAllOfComment} * @memberof InstagramResultAllOfValue */ comment?: InstagramResultAllOfComment; /** * * @type {Prize} * @memberof InstagramResultAllOfValue */ prize?: Prize; } /** * Check if a given object implements the InstagramResultAllOfValue interface. */ export declare function instanceOfInstagramResultAllOfValue(value: object): value is InstagramResultAllOfValue; export declare function InstagramResultAllOfValueFromJSON(json: any): InstagramResultAllOfValue; export declare function InstagramResultAllOfValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): InstagramResultAllOfValue; export declare function InstagramResultAllOfValueToJSON(value?: InstagramResultAllOfValue | null): any;