/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; /** * * @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 function instanceOfInstagramResultAllOfComment(value: object): value is InstagramResultAllOfComment { return true; } export function InstagramResultAllOfCommentFromJSON(json: any): InstagramResultAllOfComment { return InstagramResultAllOfCommentFromJSONTyped(json, false); } export function InstagramResultAllOfCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): InstagramResultAllOfComment { if (json == null) { return json; } return { 'id': json['id'] == null ? undefined : json['id'], 'username': json['username'] == null ? undefined : json['username'], 'userpic': json['userpic'] == null ? undefined : json['userpic'], 'text': json['text'] == null ? undefined : json['text'], }; } export function InstagramResultAllOfCommentToJSON(value?: InstagramResultAllOfComment | null): any { if (value == null) { return value; } return { 'id': value['id'], 'username': value['username'], 'userpic': value['userpic'], 'text': value['text'], }; }