pub struct ClosingDocumentRecipients {
pub party_id: String,
pub tab_extraction_method: Option<String>,
pub extract_tabs: Option<Vec<EsignExtractTabExpereAcroformSchema>>,
pub tabs: Option<Vec<Value>>,
}
Fields§
§party_id: String
Party UUID of signer.
tab_extraction_method: Option<String>
If omitted, the document is considered view-only for this party. For eSign documents where tabs are expected to be added manually, use value MANUAL
for tabExtractionMethod
.
extract_tabs: Option<Vec<EsignExtractTabExpereAcroformSchema>>
If additional information is required for tab extraction (which it is for EXPERE_ACROFORM
documents), include it in extractTabs
.
tabs: Option<Vec<Value>>
Trait Implementations§
Source§impl Debug for ClosingDocumentRecipients
impl Debug for ClosingDocumentRecipients
Source§impl<'de> Deserialize<'de> for ClosingDocumentRecipients
impl<'de> Deserialize<'de> for ClosingDocumentRecipients
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 ClosingDocumentRecipients
impl Display for ClosingDocumentRecipients
Auto Trait Implementations§
impl Freeze for ClosingDocumentRecipients
impl RefUnwindSafe for ClosingDocumentRecipients
impl Send for ClosingDocumentRecipients
impl Sync for ClosingDocumentRecipients
impl Unpin for ClosingDocumentRecipients
impl UnwindSafe for ClosingDocumentRecipients
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