pub struct BulkDeleteOrderCustomAttributesResponse {
pub errors: Option<Vec<Error>>,
pub values: HashMap<String, DeleteOrderCustomAttributeResponse>,
}Expand description
BulkDeleteOrderCustomAttributesResponse : Represents a response from deleting one or more order custom attributes.
Fields§
§errors: Option<Vec<Error>>Any errors that occurred during the request.
values: HashMap<String, DeleteOrderCustomAttributeResponse>A map of responses that correspond to individual delete requests. Each response has the same ID as the corresponding request and contains either a custom_attribute or an errors field.
Implementations§
Source§impl BulkDeleteOrderCustomAttributesResponse
impl BulkDeleteOrderCustomAttributesResponse
Sourcepub fn new(
values: HashMap<String, DeleteOrderCustomAttributeResponse>,
) -> BulkDeleteOrderCustomAttributesResponse
pub fn new( values: HashMap<String, DeleteOrderCustomAttributeResponse>, ) -> BulkDeleteOrderCustomAttributesResponse
Represents a response from deleting one or more order custom attributes.
Trait Implementations§
Source§impl Clone for BulkDeleteOrderCustomAttributesResponse
impl Clone for BulkDeleteOrderCustomAttributesResponse
Source§fn clone(&self) -> BulkDeleteOrderCustomAttributesResponse
fn clone(&self) -> BulkDeleteOrderCustomAttributesResponse
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 BulkDeleteOrderCustomAttributesResponse
impl Default for BulkDeleteOrderCustomAttributesResponse
Source§fn default() -> BulkDeleteOrderCustomAttributesResponse
fn default() -> BulkDeleteOrderCustomAttributesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BulkDeleteOrderCustomAttributesResponse
impl<'de> Deserialize<'de> for BulkDeleteOrderCustomAttributesResponse
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 BulkDeleteOrderCustomAttributesResponse
Auto Trait Implementations§
impl Freeze for BulkDeleteOrderCustomAttributesResponse
impl RefUnwindSafe for BulkDeleteOrderCustomAttributesResponse
impl Send for BulkDeleteOrderCustomAttributesResponse
impl Sync for BulkDeleteOrderCustomAttributesResponse
impl Unpin for BulkDeleteOrderCustomAttributesResponse
impl UnsafeUnpin for BulkDeleteOrderCustomAttributesResponse
impl UnwindSafe for BulkDeleteOrderCustomAttributesResponse
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