pub struct RichMenuBatchProgressResponse {
pub phase: RichMenuBatchProgressPhase,
pub accepted_time: String,
pub completed_time: Option<String>,
}
Fields§
§phase: RichMenuBatchProgressPhase
§accepted_time: String
The accepted time in milliseconds of the request of batch control the rich menu. Format: ISO 8601 (e.g. 2023-06-08T10:15:30.121Z) Timezone: UTC
completed_time: Option<String>
The completed time in milliseconds of rich menu batch control. Returned when the phase property is succeeded or failed. Format: ISO 8601 (e.g. 2023-06-08T10:15:30.121Z) Timezone: UTC
Implementations§
Source§impl RichMenuBatchProgressResponse
impl RichMenuBatchProgressResponse
pub fn new( phase: RichMenuBatchProgressPhase, accepted_time: String, ) -> RichMenuBatchProgressResponse
Trait Implementations§
Source§impl Clone for RichMenuBatchProgressResponse
impl Clone for RichMenuBatchProgressResponse
Source§fn clone(&self) -> RichMenuBatchProgressResponse
fn clone(&self) -> RichMenuBatchProgressResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for RichMenuBatchProgressResponse
impl Default for RichMenuBatchProgressResponse
Source§fn default() -> RichMenuBatchProgressResponse
fn default() -> RichMenuBatchProgressResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RichMenuBatchProgressResponse
impl<'de> Deserialize<'de> for RichMenuBatchProgressResponse
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
Source§impl PartialEq for RichMenuBatchProgressResponse
impl PartialEq for RichMenuBatchProgressResponse
Source§fn eq(&self, other: &RichMenuBatchProgressResponse) -> bool
fn eq(&self, other: &RichMenuBatchProgressResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RichMenuBatchProgressResponse
Auto Trait Implementations§
impl Freeze for RichMenuBatchProgressResponse
impl RefUnwindSafe for RichMenuBatchProgressResponse
impl Send for RichMenuBatchProgressResponse
impl Sync for RichMenuBatchProgressResponse
impl Unpin for RichMenuBatchProgressResponse
impl UnwindSafe for RichMenuBatchProgressResponse
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