pub struct CatalogVersionUpdatedWebhookResponse {
pub merchant_id: String,
pub type: CatalogWebhookEventType,
pub event_id: String,
pub created_at: DateTime,
pub data: CatalogEventData,
}Expand description
This is a model struct for CatalogVersionUpdatedWebhookResponse type.
Fields§
§merchant_id: StringThe ID of the target seller associated with the event.
type: CatalogWebhookEventTypeThe type of this event.
event_id: StringA unique ID for the event.
created_at: DateTimeRead only The timestamp of when the event was created, in RFC 3339 format. Examples for January 25th, 2020 6:25:34pm Pacific Standard Time: UTC: 2020-01-26T02:25:34Z Pacific Standard Time with UTC offset: 2020-01-25T18:25:34-08:00
data: CatalogEventDataThe data associated with the event.
Trait Implementations§
Source§impl Clone for CatalogVersionUpdatedWebhookResponse
impl Clone for CatalogVersionUpdatedWebhookResponse
Source§fn clone(&self) -> CatalogVersionUpdatedWebhookResponse
fn clone(&self) -> CatalogVersionUpdatedWebhookResponse
Returns a duplicate 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<'de> Deserialize<'de> for CatalogVersionUpdatedWebhookResponse
impl<'de> Deserialize<'de> for CatalogVersionUpdatedWebhookResponse
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
Source§impl PartialEq for CatalogVersionUpdatedWebhookResponse
impl PartialEq for CatalogVersionUpdatedWebhookResponse
Source§fn eq(&self, other: &CatalogVersionUpdatedWebhookResponse) -> bool
fn eq(&self, other: &CatalogVersionUpdatedWebhookResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CatalogVersionUpdatedWebhookResponse
impl StructuralPartialEq for CatalogVersionUpdatedWebhookResponse
Auto Trait Implementations§
impl Freeze for CatalogVersionUpdatedWebhookResponse
impl RefUnwindSafe for CatalogVersionUpdatedWebhookResponse
impl Send for CatalogVersionUpdatedWebhookResponse
impl Sync for CatalogVersionUpdatedWebhookResponse
impl Unpin for CatalogVersionUpdatedWebhookResponse
impl UnwindSafe for CatalogVersionUpdatedWebhookResponse
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