pub const IM_V1_SEND_MESSAGE: &str = "/open-apis/im/v1/messages";
pub const IM_V1_GET_MESSAGE: &str = "/open-apis/im/v1/messages/{message_id}";
pub const IM_V1_UPDATE_MESSAGE: &str = "/open-apis/im/v1/messages/{message_id}";
pub const IM_V1_DELETE_MESSAGE: &str = "/open-apis/im/v1/messages/{message_id}";
pub const IM_V1_READ_MESSAGE: &str = "/open-apis/im/v1/messages/{message_id}/read_users";
pub const IM_V1_LIST_MESSAGE: &str = "/open-apis/im/v1/messages";
pub const IM_V1_REPLY_MESSAGE: &str = "/open-apis/im/v1/messages/{message_id}/reply";
pub const IM_V1_MESSAGE_REACTIONS: &str = "/open-apis/im/v1/messages/{message_id}/reactions";
pub const IM_V1_DELETE_MESSAGE_REACTION: &str =
"/open-apis/im/v1/messages/{message_id}/reactions/{reaction_id}";
pub const IM_V1_BATCH_MESSAGES: &str = "/open-apis/im/v1/batch_messages";
pub const IM_V1_DELETE_BATCH_MESSAGE: &str = "/open-apis/im/v1/batch_messages/{batch_message_id}";
pub const IM_V1_BATCH_MESSAGE_PROGRESS: &str =
"/open-apis/im/v1/batch_messages/{batch_message_id}/get_progress";
pub const IM_V1_BATCH_MESSAGE_READ_USER: &str =
"/open-apis/im/v1/batch_messages/{batch_message_id}/read_user";
pub const IM_V1_MESSAGE_URGENT_APP: &str = "/open-apis/im/v1/messages/{message_id}/urgent_app";
pub const IM_V1_MESSAGE_URGENT_SMS: &str = "/open-apis/im/v1/messages/{message_id}/urgent_sms";
pub const IM_V1_MESSAGE_URGENT_PHONE: &str = "/open-apis/im/v1/messages/{message_id}/urgent_phone";
pub const IM_V1_MESSAGE_DELAY_UPDATE: &str = "/open-apis/im/v1/messages/{message_id}/delay_update";
pub const IM_V1_MESSAGE_URL_PREVIEW_BATCH_UPDATE: &str =
"/open-apis/im/v1/messages/{message_id}/url_preview/batch_update";
pub const IM_V1_MESSAGE_GET: &str = "/open-apis/im/v1/messages/{message_id}";
pub const IM_V1_MESSAGE_PATCH: &str = "/open-apis/im/v1/messages/{message_id}";
pub const IM_V1_MESSAGE_DELETE: &str = "/open-apis/im/v1/messages/{message_id}";
pub const IM_CHAT_CREATE: &str = "/open-apis/im/v1/chats";
pub const IM_CHAT_GET: &str = "/open-apis/im/v1/chats/{chat_id}";
pub const IM_CHAT_UPDATE: &str = "/open-apis/im/v1/chats/{chat_id}";
pub const IM_CHAT_DELETE: &str = "/open-apis/im/v1/chats/{chat_id}";
pub const IM_CHAT_MEMBERS: &str = "/open-apis/im/v1/chats/{chat_id}/members";
pub const IM_CHAT_ADD_MEMBERS: &str = "/open-apis/im/v1/chats/{chat_id}/members";
pub const IM_CHAT_REMOVE_MEMBERS: &str = "/open-apis/im/v1/chats/{chat_id}/members/batch_delete";
pub const IM_V1_PINS: &str = "/open-apis/im/v1/pins";
pub const IM_V1_DELETE_PIN: &str = "/open-apis/im/v1/pins/{pin_id}";
pub const IM_V1_FILES: &str = "/open-apis/im/v1/files";
pub const IM_V1_DOWNLOAD_FILE: &str = "/open-apis/im/v1/files/{file_key}";
pub const IM_V1_IMAGES: &str = "/open-apis/im/v1/images";
pub const IM_V1_DOWNLOAD_IMAGE: &str = "/open-apis/im/v1/images/{image_key}";
pub const IM_V2_APP_FEED_CARD: &str = "/open-apis/im/v2/app_feed_card";
pub const IM_V2_GET_APP_FEED_CARD: &str = "/open-apis/im/v2/app_feed_card/{card_id}";
pub const IM_V2_DELETE_APP_FEED_CARD: &str = "/open-apis/im/v2/app_feed_card/{card_id}";
pub const IM_V2_GROUPS_BOTS_TIME_SENSITIVE: &str = "/open-apis/im/v2/groups-bots/bot_time_sentive";
pub const IM_V2_GROUPS_BOTS_UPDATE: &str = "/open-apis/im/v2/groups-bots/{message_id}/update";
pub const IM_V2_GROUPS_BOTS_PATCH: &str = "/open-apis/im/v2/groups-bots/patch";
pub const IM_V1_MESSAGES: &str = IM_V1_SEND_MESSAGE;
pub const IM_V1_MESSAGE_REPLY: &str = IM_V1_REPLY_MESSAGE;
pub const IM_V1_CHATS: &str = IM_CHAT_CREATE;
pub const IM_V1_CHATS_GET: &str = IM_CHAT_GET;
pub const IM_V1_CHATS_UPDATE: &str = IM_CHAT_UPDATE;
pub const IM_V1_CHAT_MEMBERS: &str = IM_CHAT_MEMBERS;