/* 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 TiktokResultAllOfComment */ export interface TiktokResultAllOfComment { /** * * @type {string} * @memberof TiktokResultAllOfComment */ id?: string; /** * * @type {string} * @memberof TiktokResultAllOfComment */ text?: string; /** * * @type {string} * @memberof TiktokResultAllOfComment */ username?: string; /** * * @type {string} * @memberof TiktokResultAllOfComment */ userpic?: string; /** * * @type {string} * @memberof TiktokResultAllOfComment */ userid?: string; /** * * @type {string} * @memberof TiktokResultAllOfComment */ url?: string; } /** * Check if a given object implements the TiktokResultAllOfComment interface. */ export function instanceOfTiktokResultAllOfComment(value: object): value is TiktokResultAllOfComment { return true; } export function TiktokResultAllOfCommentFromJSON(json: any): TiktokResultAllOfComment { return TiktokResultAllOfCommentFromJSONTyped(json, false); } export function TiktokResultAllOfCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): TiktokResultAllOfComment { if (json == null) { return json; } return { 'id': json['id'] == null ? undefined : json['id'], 'text': json['text'] == null ? undefined : json['text'], 'username': json['username'] == null ? undefined : json['username'], 'userpic': json['userpic'] == null ? undefined : json['userpic'], 'userid': json['userid'] == null ? undefined : json['userid'], 'url': json['url'] == null ? undefined : json['url'], }; } export function TiktokResultAllOfCommentToJSON(value?: TiktokResultAllOfComment | null): any { if (value == null) { return value; } return { 'id': value['id'], 'text': value['text'], 'username': value['username'], 'userpic': value['userpic'], 'userid': value['userid'], 'url': value['url'], }; }