pub struct PackagePostSchema {
pub application_id: String,
pub description: Option<String>,
pub due_date: Option<String>,
pub envelopes: Vec<Value>,
pub foreign_package_id: Option<String>,
pub initiated_by_lender_id: Option<String>,
pub name: Option<String>,
pub type_: String,
}
Fields§
§application_id: String
The Blend application UUID
description: Option<String>
An optional description of the package
due_date: Option<String>
The ISO timestamp of when the package is due
envelopes: Vec<Value>
An envelope describes the signing strategy and the recipient assignment within the package.
foreign_package_id: Option<String>
External package id provided by partner
initiated_by_lender_id: Option<String>
§name: Option<String>
An optional name for the package
type_: String
Package type
Trait Implementations§
Source§impl Debug for PackagePostSchema
impl Debug for PackagePostSchema
Source§impl<'de> Deserialize<'de> for PackagePostSchema
impl<'de> Deserialize<'de> for PackagePostSchema
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 PackagePostSchema
impl Display for PackagePostSchema
Auto Trait Implementations§
impl Freeze for PackagePostSchema
impl RefUnwindSafe for PackagePostSchema
impl Send for PackagePostSchema
impl Sync for PackagePostSchema
impl Unpin for PackagePostSchema
impl UnwindSafe for PackagePostSchema
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