/** * 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. */ /** * * @export * @interface InstagramResultAllOfComment */ export interface InstagramResultAllOfComment { /** * * @type {string} * @memberof InstagramResultAllOfComment */ id?: string; /** * * @type {string} * @memberof InstagramResultAllOfComment */ username?: string; /** * * @type {string} * @memberof InstagramResultAllOfComment */ userpic?: string; /** * * @type {string} * @memberof InstagramResultAllOfComment */ text?: string; } /** * Check if a given object implements the InstagramResultAllOfComment interface. */ export declare function instanceOfInstagramResultAllOfComment(value: object): value is InstagramResultAllOfComment; export declare function InstagramResultAllOfCommentFromJSON(json: any): InstagramResultAllOfComment; export declare function InstagramResultAllOfCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): InstagramResultAllOfComment; export declare function InstagramResultAllOfCommentToJSON(value?: InstagramResultAllOfComment | null): any;