pub struct PatchFollowUpSchema {
pub status: Option<String>,
pub comments: Option<String>,
pub client_follow_up_reference_id: Option<String>,
pub due_date: Option<String>,
pub context: Option<Value>,
}
Fields§
§status: Option<String>
§comments: Option<String>
Comments displayed to the party on the follow-up
client_follow_up_reference_id: Option<String>
Unique id passed by client for referencing follow-up
due_date: Option<String>
UTC Timestamp of follow-up due date
context: Option<Value>
Trait Implementations§
Source§impl Debug for PatchFollowUpSchema
impl Debug for PatchFollowUpSchema
Source§impl<'de> Deserialize<'de> for PatchFollowUpSchema
impl<'de> Deserialize<'de> for PatchFollowUpSchema
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 Display for PatchFollowUpSchema
impl Display for PatchFollowUpSchema
Auto Trait Implementations§
impl Freeze for PatchFollowUpSchema
impl RefUnwindSafe for PatchFollowUpSchema
impl Send for PatchFollowUpSchema
impl Sync for PatchFollowUpSchema
impl Unpin for PatchFollowUpSchema
impl UnwindSafe for PatchFollowUpSchema
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