pub struct CustomerCustomAttributeUpdatedEvent {
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
CustomerCustomAttributeUpdatedEvent : Published when a customer custom attribute owned by the subscribing application is created or updated. 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 created or updated by any application. This event is replaced by customer.custom_attribute.owned.updated.
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.updated\".
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 CustomerCustomAttributeUpdatedEvent
impl CustomerCustomAttributeUpdatedEvent
Sourcepub fn new() -> CustomerCustomAttributeUpdatedEvent
pub fn new() -> CustomerCustomAttributeUpdatedEvent
Published when a customer custom attribute owned by the subscribing application is created or updated. 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 created or updated by any application. This event is replaced by customer.custom_attribute.owned.updated.
Trait Implementations§
Source§impl Clone for CustomerCustomAttributeUpdatedEvent
impl Clone for CustomerCustomAttributeUpdatedEvent
Source§fn clone(&self) -> CustomerCustomAttributeUpdatedEvent
fn clone(&self) -> CustomerCustomAttributeUpdatedEvent
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more