pub struct DocMagicENoteLoanType {
pub loan_amortization_period_count: i64,
pub loan_amortization_period_type: String,
pub payment_frequency_type: String,
pub base_loan_amount: Option<f64>,
}
Fields§
§loan_amortization_period_count: i64
The number periods (as defined by the Loan Amortization Period Type) over which the scheduled loan payments of principal and/or interest are calculated to retire the obligation. Minimum is 0, maximum is 2147483647.
loan_amortization_period_type: String
The duration of time used to define the period over which the loan is amortized.
payment_frequency_type: String
Specifies the frequency of the mortgage payment.
base_loan_amount: Option<f64>
The base loan amount to be loaned to the borrower not including PMI, MIP, or Funding Fee.
Trait Implementations§
Source§impl Debug for DocMagicENoteLoanType
impl Debug for DocMagicENoteLoanType
Source§impl<'de> Deserialize<'de> for DocMagicENoteLoanType
impl<'de> Deserialize<'de> for DocMagicENoteLoanType
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 DocMagicENoteLoanType
impl Display for DocMagicENoteLoanType
Auto Trait Implementations§
impl Freeze for DocMagicENoteLoanType
impl RefUnwindSafe for DocMagicENoteLoanType
impl Send for DocMagicENoteLoanType
impl Sync for DocMagicENoteLoanType
impl Unpin for DocMagicENoteLoanType
impl UnwindSafe for DocMagicENoteLoanType
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