box-node-sdk
Version:
Official SDK for Box Platform APIs
13 lines (12 loc) • 538 B
TypeScript
import { Comment } from './comment';
import { SerializedData } from '../serialization/json';
export type CommentFull = Comment & {
/**
* The string representing the comment text with
* @mentions included. @mention format is @[id:username]
* where `id` is user's Box ID and `username` is
* their display name. */
readonly taggedMessage?: string;
};
export declare function serializeCommentFull(val: CommentFull): SerializedData;
export declare function deserializeCommentFull(val: SerializedData): CommentFull;