pub struct EnvelopeResponseSchema {
pub id: String,
pub provider_id: String,
pub provider_type: String,
pub signature_required: bool,
pub status: String,
pub recipients: Vec<EnvelopesRecipientResponseSchema>,
}
Fields§
§id: String
The Blend envelope UUID
provider_id: String
A Blend provided UUID for providerType ESIGN, SSO_SAML, and DIRECT_LINK envelopes
provider_type: String
Different signing strategies: * DIRECT_LINK: The recipient uses a Blend Sign related URL link that may contain an access token to login for signing. ESIGN: A Docusign integration. IFRAME_SIGN: A signing strategy used in close service. REVIEW: The recipient views the documents in Blend’s document viewer. SSO_SAML: Uses SSO to authenticate the recipient before acting on disclosures. WETSIGN: The recipient downloads the package as a PDF and uploads signed PDFs into Blend. OFFER: The recipient is given option to accept/decline the package containing term details and documents.
signature_required: bool
§status: String
§recipients: Vec<EnvelopesRecipientResponseSchema>
Trait Implementations§
Source§impl Debug for EnvelopeResponseSchema
impl Debug for EnvelopeResponseSchema
Source§impl<'de> Deserialize<'de> for EnvelopeResponseSchema
impl<'de> Deserialize<'de> for EnvelopeResponseSchema
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 EnvelopeResponseSchema
impl Display for EnvelopeResponseSchema
Auto Trait Implementations§
impl Freeze for EnvelopeResponseSchema
impl RefUnwindSafe for EnvelopeResponseSchema
impl Send for EnvelopeResponseSchema
impl Sync for EnvelopeResponseSchema
impl Unpin for EnvelopeResponseSchema
impl UnwindSafe for EnvelopeResponseSchema
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