pub struct UnderwritersRonEligibilityResponseObject {
pub name: Option<String>,
pub eligibility: Option<String>,
pub allows_out_of_state_notary: Option<bool>,
}
Fields§
§name: Option<String>
Name of the underwriter entity
eligibility: Option<String>
There are different components to look at to determine eligibility for a RON closing (i.e. state, county, underwriter), this describes the eligibility of a specific RON eligibility component. Possible options include: ‘ELIGIBLE’ - The component is eligible for a RON closing. ‘INELIGIBLE’ - The component is NOT eligible for a RON closing. ‘UNKNOWN’ - There is not enough information to determine whether the component is eligible or not.
allows_out_of_state_notary: Option<bool>
Whether the underwriter will recognize a RON for a property that will be performed by a notary who is commissioned in a state outside of where the property is located.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UnderwritersRonEligibilityResponseObject
impl<'de> Deserialize<'de> for UnderwritersRonEligibilityResponseObject
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 UnderwritersRonEligibilityResponseObject
impl RefUnwindSafe for UnderwritersRonEligibilityResponseObject
impl Send for UnderwritersRonEligibilityResponseObject
impl Sync for UnderwritersRonEligibilityResponseObject
impl Unpin for UnderwritersRonEligibilityResponseObject
impl UnwindSafe for UnderwritersRonEligibilityResponseObject
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