pub struct BulkDeleteBookingCustomAttributesRequest {
pub values: HashMap<String, BookingCustomAttributeDeleteRequest>,
}Expand description
BulkDeleteBookingCustomAttributesRequest : Represents a BulkDeleteBookingCustomAttributes request.
Fields§
§values: HashMap<String, BookingCustomAttributeDeleteRequest>A map containing 1 to 25 individual Delete requests. For each request, provide an arbitrary ID that is unique for this BulkDeleteBookingCustomAttributes request and the information needed to delete a custom attribute.
Implementations§
Source§impl BulkDeleteBookingCustomAttributesRequest
impl BulkDeleteBookingCustomAttributesRequest
Sourcepub fn new(
values: HashMap<String, BookingCustomAttributeDeleteRequest>,
) -> BulkDeleteBookingCustomAttributesRequest
pub fn new( values: HashMap<String, BookingCustomAttributeDeleteRequest>, ) -> BulkDeleteBookingCustomAttributesRequest
Represents a BulkDeleteBookingCustomAttributes request.
Trait Implementations§
Source§impl Clone for BulkDeleteBookingCustomAttributesRequest
impl Clone for BulkDeleteBookingCustomAttributesRequest
Source§fn clone(&self) -> BulkDeleteBookingCustomAttributesRequest
fn clone(&self) -> BulkDeleteBookingCustomAttributesRequest
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 BulkDeleteBookingCustomAttributesRequest
impl Default for BulkDeleteBookingCustomAttributesRequest
Source§fn default() -> BulkDeleteBookingCustomAttributesRequest
fn default() -> BulkDeleteBookingCustomAttributesRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BulkDeleteBookingCustomAttributesRequest
impl<'de> Deserialize<'de> for BulkDeleteBookingCustomAttributesRequest
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 BulkDeleteBookingCustomAttributesRequest
Auto Trait Implementations§
impl Freeze for BulkDeleteBookingCustomAttributesRequest
impl RefUnwindSafe for BulkDeleteBookingCustomAttributesRequest
impl Send for BulkDeleteBookingCustomAttributesRequest
impl Sync for BulkDeleteBookingCustomAttributesRequest
impl Unpin for BulkDeleteBookingCustomAttributesRequest
impl UnsafeUnpin for BulkDeleteBookingCustomAttributesRequest
impl UnwindSafe for BulkDeleteBookingCustomAttributesRequest
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