pub struct SignReply {
pub document: Option<Box<DocumentSummary>>,
pub esign_ref: Option<String>,
pub provider: Option<String>,
}Fields§
§document: Option<Box<DocumentSummary>>Document is the document, now out for signature. Its rendered body is not repeated here.
esign_ref: Option<String>EsignRef is the provider’s own reference for the request — what a webhook or a status poll quotes.
provider: Option<String>Provider names the e-signature provider that took the request. "manual" means no provider is wired on this deployment and the org fulfils it out of band.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SignReply
impl<'de> Deserialize<'de> for SignReply
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
impl StructuralPartialEq for SignReply
Auto Trait Implementations§
impl Freeze for SignReply
impl RefUnwindSafe for SignReply
impl Send for SignReply
impl Sync for SignReply
impl Unpin for SignReply
impl UnsafeUnpin for SignReply
impl UnwindSafe for SignReply
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