pub struct GetItpResponse {
pub added_at: String,
pub given_at: Option<String>,
pub given_by: Option<String>,
pub given_method: Option<String>,
}
Fields§
§added_at: String
ISO 8601 timestamp when the first Intent to Proceed Workflow was added for any borrower.
given_at: Option<String>
ISO 8601 timestamp when Intent to Proceed was given on an application.
given_by: Option<String>
The partyID of the borrower who gave Intent to Proceed.
given_method: Option<String>
The method used to provide Intent to Proceed. This is ‘ELECTRONICALLY_IN_BLEND’ only if it was provided by a borrower completing a borrower workflow in Blend. If it is marked completed by a lender in Blend on behalf of a borrower, or via API actions, it will be set as ‘OUTSIDE_OF_BLEND’.
Trait Implementations§
Source§impl Debug for GetItpResponse
impl Debug for GetItpResponse
Source§impl<'de> Deserialize<'de> for GetItpResponse
impl<'de> Deserialize<'de> for GetItpResponse
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 GetItpResponse
impl Display for GetItpResponse
Auto Trait Implementations§
impl Freeze for GetItpResponse
impl RefUnwindSafe for GetItpResponse
impl Send for GetItpResponse
impl Sync for GetItpResponse
impl Unpin for GetItpResponse
impl UnwindSafe for GetItpResponse
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