pub struct PartyCreditSchema {
pub credit_reference_number: Option<String>,
pub credit_pull_date: Option<String>,
pub credit_pull_type: Option<String>,
pub equifax_score: Option<f64>,
pub experian_score: Option<f64>,
pub trans_union_score: Option<f64>,
pub estimated_credit_score: Option<f64>,
}
Fields§
§credit_reference_number: Option<String>
Unique identifier for the credit pull as returned by the credit provider.
credit_pull_date: Option<String>
UTC Timestamp of when credit was pulled for this party.
credit_pull_type: Option<String>
Pull Type of the active credit report for this party.
equifax_score: Option<f64>
Party’s Equifax credit score.
experian_score: Option<f64>
Party’s Experian credit score.
trans_union_score: Option<f64>
Party’s TransUnion credit score.
estimated_credit_score: Option<f64>
Party’s self-stated credit score.
Trait Implementations§
Source§impl Debug for PartyCreditSchema
impl Debug for PartyCreditSchema
Source§impl<'de> Deserialize<'de> for PartyCreditSchema
impl<'de> Deserialize<'de> for PartyCreditSchema
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 PartyCreditSchema
impl Display for PartyCreditSchema
Auto Trait Implementations§
impl Freeze for PartyCreditSchema
impl RefUnwindSafe for PartyCreditSchema
impl Send for PartyCreditSchema
impl Sync for PartyCreditSchema
impl Unpin for PartyCreditSchema
impl UnwindSafe for PartyCreditSchema
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