pub struct BatchDeleteCatalogObjectsRequest {
pub location_id: Option<String>,
pub object_ids: Vec<String>,
}
Expand description
This is a model class for BatchDeleteCatalogObjectsRequest type.
Fields§
§location_id: Option<String>
§object_ids: Vec<String>
The IDs of the CatalogObjects to be deleted. When an object is deleted, other objects in the graph that depend on that object will be deleted as well (for example, deleting a CatalogItem will delete its CatalogItemVariation.
Trait Implementations§
source§impl Clone for BatchDeleteCatalogObjectsRequest
impl Clone for BatchDeleteCatalogObjectsRequest
source§fn clone(&self) -> BatchDeleteCatalogObjectsRequest
fn clone(&self) -> BatchDeleteCatalogObjectsRequest
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 Default for BatchDeleteCatalogObjectsRequest
impl Default for BatchDeleteCatalogObjectsRequest
source§fn default() -> BatchDeleteCatalogObjectsRequest
fn default() -> BatchDeleteCatalogObjectsRequest
Returns the “default value” for a type. Read more
source§impl PartialEq<BatchDeleteCatalogObjectsRequest> for BatchDeleteCatalogObjectsRequest
impl PartialEq<BatchDeleteCatalogObjectsRequest> for BatchDeleteCatalogObjectsRequest
source§fn eq(&self, other: &BatchDeleteCatalogObjectsRequest) -> bool
fn eq(&self, other: &BatchDeleteCatalogObjectsRequest) -> bool
impl Eq for BatchDeleteCatalogObjectsRequest
impl StructuralEq for BatchDeleteCatalogObjectsRequest
impl StructuralPartialEq for BatchDeleteCatalogObjectsRequest
Auto Trait Implementations§
impl RefUnwindSafe for BatchDeleteCatalogObjectsRequest
impl Send for BatchDeleteCatalogObjectsRequest
impl Sync for BatchDeleteCatalogObjectsRequest
impl Unpin for BatchDeleteCatalogObjectsRequest
impl UnwindSafe for BatchDeleteCatalogObjectsRequest
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.