+ subparser.addArgument("--mention")
+ .nargs("*")
+ .help("Mention another group member (syntax: start:length:recipientNumber). "
+ + "Unit of start and length is UTF-16 code units, NOT Unicode code points.");
+ subparser.addArgument("--text-style")
+ .nargs("*")
+ .help("Style parts of the message text (syntax: start:length:STYLE). "
+ + "Unit of start and length is UTF-16 code units, NOT Unicode code points.");
+ subparser.addArgument("--quote-timestamp")
+ .type(long.class)
+ .help("Specify the timestamp of a previous message with the recipient or group to add a quote to the new message.");
+ subparser.addArgument("--quote-author").help("Specify the number of the author of the original message.");
+ subparser.addArgument("--quote-message").help("Specify the message of the original message.");
+ subparser.addArgument("--quote-mention")
+ .nargs("*")
+ .help("Quote with mention of another group member (syntax: start:length:recipientNumber)");
+ subparser.addArgument("--quote-attachment")
+ .nargs("*")
+ .help("Specify the attachments of the original message (syntax: contentType[:filename[:previewFile]]), e.g. 'audio/aac' or 'image/png:test.png:/tmp/preview.jpg'.");
+ subparser.addArgument("--quote-text-style")
+ .nargs("*")
+ .help("Quote with style parts of the message text (syntax: start:length:STYLE)");
+ subparser.addArgument("--sticker").help("Send a sticker (syntax: stickerPackId:stickerId)");
+ subparser.addArgument("--preview-url")
+ .help("Specify the url for the link preview (the same url must also appear in the message body).");
+ subparser.addArgument("--preview-title").help("Specify the title for the link preview (mandatory).");
+ subparser.addArgument("--preview-description").help("Specify the description for the link preview (optional).");
+ subparser.addArgument("--preview-image").help("Specify the image file for the link preview (optional).");
+ subparser.addArgument("--story-timestamp")
+ .type(long.class)
+ .help("Specify the timestamp of a story to reply to.");
+ subparser.addArgument("--story-author").help("Specify the number of the author of the story.");
+ subparser.addArgument("--edit-timestamp")
+ .type(long.class)
+ .help("Specify the timestamp of a previous message with the recipient or group to send an edited message.");