pub struct EnvelopesRecipientResponseSchema {
pub declined_date: Option<String>,
pub declined_ip: Option<String>,
pub delivered_date: Option<String>,
pub metadata: Value,
pub party_id: String,
pub party_type: Option<String>,
pub received_ip: Option<String>,
pub signed_date: Option<String>,
pub signed_ip: Option<String>,
pub status: Option<String>,
}
Fields§
§declined_date: Option<String>
§declined_ip: Option<String>
§delivered_date: Option<String>
§metadata: Value
§party_id: String
The Blend party UUID
party_type: Option<String>
§received_ip: Option<String>
§signed_date: Option<String>
§signed_ip: Option<String>
§status: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EnvelopesRecipientResponseSchema
impl<'de> Deserialize<'de> for EnvelopesRecipientResponseSchema
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 EnvelopesRecipientResponseSchema
impl RefUnwindSafe for EnvelopesRecipientResponseSchema
impl Send for EnvelopesRecipientResponseSchema
impl Sync for EnvelopesRecipientResponseSchema
impl Unpin for EnvelopesRecipientResponseSchema
impl UnwindSafe for EnvelopesRecipientResponseSchema
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