/** * Audius API * * The version of the OpenAPI document: 1.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 CommentMention */ export interface CommentMention { /** * * @type {number} * @memberof CommentMention */ userId: number; /** * * @type {string} * @memberof CommentMention */ handle: string; } /** * Check if a given object implements the CommentMention interface. */ export declare function instanceOfCommentMention(value: object): value is CommentMention; export declare function CommentMentionFromJSON(json: any): CommentMention; export declare function CommentMentionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentMention; export declare function CommentMentionToJSON(value?: CommentMention | null): any;