pub struct UpsertCustomerCustomAttributeRequest {
pub custom_attribute: Box<CustomAttribute>,
pub idempotency_key: Option<Option<String>>,
}Expand description
UpsertCustomerCustomAttributeRequest : Represents an UpsertCustomerCustomAttribute request.
Fields§
§custom_attribute: Box<CustomAttribute>§idempotency_key: Option<Option<String>>A unique identifier for this request, used to ensure idempotency. For more information, see Idempotency.
Implementations§
Source§impl UpsertCustomerCustomAttributeRequest
impl UpsertCustomerCustomAttributeRequest
Sourcepub fn new(
custom_attribute: CustomAttribute,
) -> UpsertCustomerCustomAttributeRequest
pub fn new( custom_attribute: CustomAttribute, ) -> UpsertCustomerCustomAttributeRequest
Represents an UpsertCustomerCustomAttribute request.
Trait Implementations§
Source§impl Clone for UpsertCustomerCustomAttributeRequest
impl Clone for UpsertCustomerCustomAttributeRequest
Source§fn clone(&self) -> UpsertCustomerCustomAttributeRequest
fn clone(&self) -> UpsertCustomerCustomAttributeRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for UpsertCustomerCustomAttributeRequest
impl Default for UpsertCustomerCustomAttributeRequest
Source§fn default() -> UpsertCustomerCustomAttributeRequest
fn default() -> UpsertCustomerCustomAttributeRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpsertCustomerCustomAttributeRequest
impl<'de> Deserialize<'de> for UpsertCustomerCustomAttributeRequest
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
impl StructuralPartialEq for UpsertCustomerCustomAttributeRequest
Auto Trait Implementations§
impl Freeze for UpsertCustomerCustomAttributeRequest
impl RefUnwindSafe for UpsertCustomerCustomAttributeRequest
impl Send for UpsertCustomerCustomAttributeRequest
impl Sync for UpsertCustomerCustomAttributeRequest
impl Unpin for UpsertCustomerCustomAttributeRequest
impl UnsafeUnpin for UpsertCustomerCustomAttributeRequest
impl UnwindSafe for UpsertCustomerCustomAttributeRequest
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