/** * 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 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 declare function instanceOfTiktokResultAllOfComment(value: object): value is TiktokResultAllOfComment; export declare function TiktokResultAllOfCommentFromJSON(json: any): TiktokResultAllOfComment; export declare function TiktokResultAllOfCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): TiktokResultAllOfComment; export declare function TiktokResultAllOfCommentToJSON(value?: TiktokResultAllOfComment | null): any;