/** 评论玩法的参与记录 */ export interface CommentEngagement { /** 用户世游通行证 ID */ user_id: string; /** 用户昵称 */ name: string; /** 用户头像地址 */ avatar_url: string; /** 评论信息 */ comment: string; /** 用户发布弹幕的视频点 */ video_note: number; /** 用户发布弹幕的时间 */ created_at: number; } export declare const CommentEngagementValidator: import("@seayoo-web/validator").ObjectValidator; export interface CommentEngagementParam { /** 用户发送弹幕内容 */ comment: string; /** 用户发布弹幕的视频点 */ video_note?: number; } export type CommentEngagementError = "comment_too_frequently";