pub struct DocumentRequestSchema {
pub file: String,
pub application_id: String,
pub type_: Option<String>,
pub los_type: Option<String>,
pub los_type_id: Option<String>,
pub party_ids: Option<Vec<String>>,
pub name: Option<String>,
pub status: Option<String>,
pub share_with_all_parties: Option<bool>,
pub custom_fields: Option<String>,
pub custom_metadata: Option<String>,
}
Fields§
§file: String
the file to be attached to the application
application_id: String
The UUID of the application in Blend’s system. The static identifier that should be used to connect the application’s identity across Blend and external integrations.
type_: Option<String>
Blend document type
los_type: Option<String>
LOS document type (used with Blend document templating)
los_type_id: Option<String>
LOS document id (used for external tracking)
party_ids: Option<Vec<String>>
UUIDs of the Parties associated with this document
name: Option<String>
§status: Option<String>
ENUM describing the Document Status
If set to true, uploaded document becomes accessible to borrowers; otherwise, only lender can view the document
custom_fields: Option<String>
field name of the custom field
custom_metadata: Option<String>
field name of the custom metadata
Trait Implementations§
Source§impl Debug for DocumentRequestSchema
impl Debug for DocumentRequestSchema
Source§impl<'de> Deserialize<'de> for DocumentRequestSchema
impl<'de> Deserialize<'de> for DocumentRequestSchema
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 DocumentRequestSchema
impl Display for DocumentRequestSchema
Auto Trait Implementations§
impl Freeze for DocumentRequestSchema
impl RefUnwindSafe for DocumentRequestSchema
impl Send for DocumentRequestSchema
impl Sync for DocumentRequestSchema
impl Unpin for DocumentRequestSchema
impl UnwindSafe for DocumentRequestSchema
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