pub struct ClosingPartyPatchRequest {
pub email: String,
pub party_type: Option<String>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub phone_number: Option<String>,
pub agency_name: Option<String>,
}
Fields§
§email: String
Email address of the closing party
party_type: Option<String>
The closing party type
first_name: Option<String>
First name of the closing party
last_name: Option<String>
Last name of the closing party
phone_number: Option<String>
Phone number of the closing party
agency_name: Option<String>
Name of the closing party’s agency
Trait Implementations§
Source§impl Debug for ClosingPartyPatchRequest
impl Debug for ClosingPartyPatchRequest
Source§impl<'de> Deserialize<'de> for ClosingPartyPatchRequest
impl<'de> Deserialize<'de> for ClosingPartyPatchRequest
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 ClosingPartyPatchRequest
impl Display for ClosingPartyPatchRequest
Auto Trait Implementations§
impl Freeze for ClosingPartyPatchRequest
impl RefUnwindSafe for ClosingPartyPatchRequest
impl Send for ClosingPartyPatchRequest
impl Sync for ClosingPartyPatchRequest
impl Unpin for ClosingPartyPatchRequest
impl UnwindSafe for ClosingPartyPatchRequest
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