pub struct UpdateBillingAddrParams {
pub customer_id: String,
pub update_billing_address_request: Option<UpdateBillingAddressRequest>,
}
Expand description
struct for passing parameters to the method update_billing_addr
Fields§
§customer_id: String
Alphanumeric string identifying the customer.
update_billing_address_request: Option<UpdateBillingAddressRequest>
One or more billing address attributes
Trait Implementations§
source§impl Clone for UpdateBillingAddrParams
impl Clone for UpdateBillingAddrParams
source§fn clone(&self) -> UpdateBillingAddrParams
fn clone(&self) -> UpdateBillingAddrParams
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for UpdateBillingAddrParams
impl Debug for UpdateBillingAddrParams
source§impl Default for UpdateBillingAddrParams
impl Default for UpdateBillingAddrParams
source§fn default() -> UpdateBillingAddrParams
fn default() -> UpdateBillingAddrParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for UpdateBillingAddrParams
impl Send for UpdateBillingAddrParams
impl Sync for UpdateBillingAddrParams
impl Unpin for UpdateBillingAddrParams
impl UnwindSafe for UpdateBillingAddrParams
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