pub struct ConsumerLendingApplicationDecisionSchema {
pub updated_date: String,
pub status: String,
pub source: String,
pub amount: Option<f64>,
pub apr: Option<f64>,
pub monthly_payment: Option<f64>,
pub term_months: Option<f64>,
pub product_offering: Option<String>,
pub policy_snapshot: Option<Value>,
pub attributes: Option<Value>,
pub result: Option<Value>,
}
Fields§
§updated_date: String
§status: String
§source: String
§amount: Option<f64>
§apr: Option<f64>
§monthly_payment: Option<f64>
§term_months: Option<f64>
§product_offering: Option<String>
§policy_snapshot: Option<Value>
§attributes: Option<Value>
§result: Option<Value>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ConsumerLendingApplicationDecisionSchema
impl<'de> Deserialize<'de> for ConsumerLendingApplicationDecisionSchema
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
Auto Trait Implementations§
impl Freeze for ConsumerLendingApplicationDecisionSchema
impl RefUnwindSafe for ConsumerLendingApplicationDecisionSchema
impl Send for ConsumerLendingApplicationDecisionSchema
impl Sync for ConsumerLendingApplicationDecisionSchema
impl Unpin for ConsumerLendingApplicationDecisionSchema
impl UnwindSafe for ConsumerLendingApplicationDecisionSchema
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