use openlark_core::{validate_required, SDKResult};
pub mod delete;
pub mod list;
pub mod models;
pub mod update;
pub fn validate_comment_file_type_for_list_like(file_type: &str) -> SDKResult<()> {
validate_required!(file_type.trim(), "file_type不能为空");
Ok(())
}
pub use delete::{DeleteCommentReplyRequest, DeleteCommentReplyResponse};
pub use list::{ListCommentReplyRequest, ListCommentReplyResponse};
pub use models::{DocsLink, Person, ReplyContent, ReplyElement, ReplyExtra, ReplyInfo, TextRun};
pub use update::{UpdateReplyRequest, UpdateReplyResponse};