pub struct UnderwritingResultSchema {
pub id: String,
pub aus_product: String,
pub run_data: Option<Value>,
pub recommendation: Option<Value>,
pub findings_doc_id: Option<String>,
pub run_parameters: Option<Value>,
}
Fields§
§id: String
The UUID of the Underwriting Result in Blend’s system.
aus_product: String
The AUS system that was used to run the result.
run_data: Option<Value>
A collection of information about a specific AUS run in Blend.
recommendation: Option<Value>
The returned recommendation from the AUS.
findings_doc_id: Option<String>
The UUID for the document that came with the findings for this AUS run.
run_parameters: Option<Value>
The loan attributes used for this AUS run, such as debt-to-income ratio.
Trait Implementations§
Source§impl Debug for UnderwritingResultSchema
impl Debug for UnderwritingResultSchema
Source§impl<'de> Deserialize<'de> for UnderwritingResultSchema
impl<'de> Deserialize<'de> for UnderwritingResultSchema
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 UnderwritingResultSchema
impl Display for UnderwritingResultSchema
Auto Trait Implementations§
impl Freeze for UnderwritingResultSchema
impl RefUnwindSafe for UnderwritingResultSchema
impl Send for UnderwritingResultSchema
impl Sync for UnderwritingResultSchema
impl Unpin for UnderwritingResultSchema
impl UnwindSafe for UnderwritingResultSchema
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