pub struct ExportCompleteNotify {
pub to_user_name: String,
pub from_user_name: String,
pub create_time: i64,
pub msg_type: String,
pub event: String,
pub batch_job: Option<BatchJob>,
}Expand description
导出任务完成通知
Fields§
§to_user_name: String企业微信CorpID
from_user_name: String此时固定为sys
create_time: i64消息创建时间(整型)
msg_type: String消息类型,此时固定为:event
event: String事件类型:batch_job_result
batch_job: Option<BatchJob>Trait Implementations§
Source§impl Debug for ExportCompleteNotify
impl Debug for ExportCompleteNotify
Source§impl Default for ExportCompleteNotify
impl Default for ExportCompleteNotify
Source§fn default() -> ExportCompleteNotify
fn default() -> ExportCompleteNotify
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExportCompleteNotify
impl<'de> Deserialize<'de> for ExportCompleteNotify
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExportCompleteNotify
impl RefUnwindSafe for ExportCompleteNotify
impl Send for ExportCompleteNotify
impl Sync for ExportCompleteNotify
impl Unpin for ExportCompleteNotify
impl UnwindSafe for ExportCompleteNotify
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more