pub struct DeleteCatalogObjectResponse {
pub errors: Option<Vec<Error>>,
pub deleted_object_ids: Option<Vec<String>>,
pub deleted_at: Option<DateTime>,
}
Expand description
This is a model struct for DeleteCatalogObjectResponse type
Fields§
§errors: Option<Vec<Error>>
Any errors that occurred during the request.
deleted_object_ids: Option<Vec<String>>
The IDs of all catalog objects deleted by this request. Multiple IDs may be returned when associated objects are also deleted, for example a catalog item variation will be deleted (and its ID included in this field) when its parent catalog item is deleted.
deleted_at: Option<DateTime>
The database timestamp of this deletion.
Trait Implementations§
Source§impl Clone for DeleteCatalogObjectResponse
impl Clone for DeleteCatalogObjectResponse
Source§fn clone(&self) -> DeleteCatalogObjectResponse
fn clone(&self) -> DeleteCatalogObjectResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteCatalogObjectResponse
impl Debug for DeleteCatalogObjectResponse
Source§impl Default for DeleteCatalogObjectResponse
impl Default for DeleteCatalogObjectResponse
Source§fn default() -> DeleteCatalogObjectResponse
fn default() -> DeleteCatalogObjectResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteCatalogObjectResponse
impl<'de> Deserialize<'de> for DeleteCatalogObjectResponse
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 Eq for DeleteCatalogObjectResponse
impl StructuralPartialEq for DeleteCatalogObjectResponse
Auto Trait Implementations§
impl Freeze for DeleteCatalogObjectResponse
impl RefUnwindSafe for DeleteCatalogObjectResponse
impl Send for DeleteCatalogObjectResponse
impl Sync for DeleteCatalogObjectResponse
impl Unpin for DeleteCatalogObjectResponse
impl UnwindSafe for DeleteCatalogObjectResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.