pub struct PostFollowUpSchema {
pub application_id: String,
pub type_: String,
pub comments: Option<String>,
pub client_follow_up_reference_id: Option<String>,
pub due_date: Option<String>,
pub context: Value,
}
Fields§
§application_id: String
ID of the application to add the follow-up to
type_: String
Types of follow-ups that can be created
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: Value
Trait Implementations§
Source§impl Debug for PostFollowUpSchema
impl Debug for PostFollowUpSchema
Source§impl<'de> Deserialize<'de> for PostFollowUpSchema
impl<'de> Deserialize<'de> for PostFollowUpSchema
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 PostFollowUpSchema
impl Display for PostFollowUpSchema
Auto Trait Implementations§
impl Freeze for PostFollowUpSchema
impl RefUnwindSafe for PostFollowUpSchema
impl Send for PostFollowUpSchema
impl Sync for PostFollowUpSchema
impl Unpin for PostFollowUpSchema
impl UnwindSafe for PostFollowUpSchema
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