pub struct PackageResponseSchema {
pub application_id: String,
pub created_date: Option<String>,
pub description: Option<String>,
pub due_date: Option<String>,
pub envelopes: Vec<EnvelopeResponseSchema>,
pub foreign_package_id: Option<String>,
pub id: String,
pub name: Option<String>,
pub papered_at: Option<String>,
pub requested_by: Option<String>,
pub status: String,
pub type_: String,
}
Fields§
§application_id: String
The Blend application UUID
created_date: Option<String>
§description: Option<String>
An optional description of the package
due_date: Option<String>
The ISO timestamp of when the lender has indicated a package is due
envelopes: Vec<EnvelopeResponseSchema>
An envelope describes the signing strategy and the recipient assignment within the package
foreign_package_id: Option<String>
External package id provided by partner
id: String
The Blend package UUID
name: Option<String>
A name for the package
papered_at: Option<String>
The ISO timestamp of when the lender decides to mail a package and not pursue electronic delivery
requested_by: Option<String>
§status: String
§type_: String
Package type
Trait Implementations§
Source§impl Debug for PackageResponseSchema
impl Debug for PackageResponseSchema
Source§impl<'de> Deserialize<'de> for PackageResponseSchema
impl<'de> Deserialize<'de> for PackageResponseSchema
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 PackageResponseSchema
impl Display for PackageResponseSchema
Auto Trait Implementations§
impl Freeze for PackageResponseSchema
impl RefUnwindSafe for PackageResponseSchema
impl Send for PackageResponseSchema
impl Sync for PackageResponseSchema
impl Unpin for PackageResponseSchema
impl UnwindSafe for PackageResponseSchema
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