pub struct CustomerCustomAttributeDeletedEvent {
pub merchant_id: Option<Option<String>>,
pub type: Option<Option<String>>,
pub event_id: Option<Option<String>>,
pub created_at: Option<String>,
pub data: Option<Box<CustomAttributeEventData>>,
}Expand description
CustomerCustomAttributeDeletedEvent : Published when a customer custom attribute owned by the subscribing application is deleted. Custom attributes are owned by the application that created the corresponding custom attribute definition. Custom attributes whose visibility is VISIBILITY_READ_WRITE_VALUES can be deleted by any application. This event is replaced by customer.custom_attribute.owned.deleted.
Fields§
§merchant_id: Option<Option<String>>The ID of the seller associated with the event that triggered the event notification.
type: Option<Option<String>>The type of this event. The value is \"customer.custom_attribute.deleted\".
event_id: Option<Option<String>>A unique ID for the event notification.
created_at: Option<String>The timestamp that indicates when the event notification was created, in RFC 3339 format.
data: Option<Box<CustomAttributeEventData>>Implementations§
Source§impl CustomerCustomAttributeDeletedEvent
impl CustomerCustomAttributeDeletedEvent
Sourcepub fn new() -> CustomerCustomAttributeDeletedEvent
pub fn new() -> CustomerCustomAttributeDeletedEvent
Published when a customer custom attribute owned by the subscribing application is deleted. Custom attributes are owned by the application that created the corresponding custom attribute definition. Custom attributes whose visibility is VISIBILITY_READ_WRITE_VALUES can be deleted by any application. This event is replaced by customer.custom_attribute.owned.deleted.
Trait Implementations§
Source§impl Clone for CustomerCustomAttributeDeletedEvent
impl Clone for CustomerCustomAttributeDeletedEvent
Source§fn clone(&self) -> CustomerCustomAttributeDeletedEvent
fn clone(&self) -> CustomerCustomAttributeDeletedEvent
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more