pub struct Event {
pub account: Option<String>,
pub api_version: Option<ApiVersion>,
pub created: Timestamp,
pub data: EventData,
pub id: EventId,
pub livemode: bool,
pub pending_webhooks: i64,
pub request: Option<NotificationEventRequest>,
pub type_: EventType,
}
Fields§
§account: Option<String>
The connected account that originated the event.
api_version: Option<ApiVersion>
The Stripe API version used to render data
.
Note: This property is populated only for events on or after October 31, 2014.
created: Timestamp
Time at which the object was created.
Measured in seconds since the Unix epoch.
data: EventData
§id: EventId
Unique identifier for the object.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
pending_webhooks: i64
Number of webhooks that have yet to be successfully delivered (i.e., to return a 20x response) to the URLs you’ve specified.
request: Option<NotificationEventRequest>
Information on the API request that instigated the event.
type_: EventType
Description of the event (e.g., invoice.created
or charge.refunded
).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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