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
sourceimpl Clone for DeleteCatalogObjectResponse
impl Clone for DeleteCatalogObjectResponse
sourcefn clone(&self) -> DeleteCatalogObjectResponse
fn clone(&self) -> DeleteCatalogObjectResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DeleteCatalogObjectResponse
impl Debug for DeleteCatalogObjectResponse
sourceimpl Default for DeleteCatalogObjectResponse
impl Default for DeleteCatalogObjectResponse
sourcefn default() -> DeleteCatalogObjectResponse
fn default() -> DeleteCatalogObjectResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for DeleteCatalogObjectResponse
impl<'de> Deserialize<'de> for DeleteCatalogObjectResponse
sourcefn 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
sourceimpl PartialEq<DeleteCatalogObjectResponse> for DeleteCatalogObjectResponse
impl PartialEq<DeleteCatalogObjectResponse> for DeleteCatalogObjectResponse
sourcefn eq(&self, other: &DeleteCatalogObjectResponse) -> bool
fn eq(&self, other: &DeleteCatalogObjectResponse) -> bool
impl Eq for DeleteCatalogObjectResponse
impl StructuralEq for DeleteCatalogObjectResponse
impl StructuralPartialEq for DeleteCatalogObjectResponse
Auto Trait Implementations
impl RefUnwindSafe for DeleteCatalogObjectResponse
impl Send for DeleteCatalogObjectResponse
impl Sync for DeleteCatalogObjectResponse
impl Unpin for DeleteCatalogObjectResponse
impl UnwindSafe for DeleteCatalogObjectResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.