Package com.stripe.model
Class ThinEvent
java.lang.Object
com.stripe.model.ThinEvent
ThinEvent represents the json that's delivered from an Event Destination. It's a basic class with
no additional methods or properties. Use it to check basic information about a delivered event.
If you want more details, use `stripeClient.v2().core().events().retrieve(thin_event.id)` to
fetch the full event object.
-
Field Summary
FieldsModifier and TypeFieldDescription[Optional] Authentication context needed to fetch the event or related object.Time at which the object was created.Unique identifier for the event.Livemode indicates if the event is from a production(true) or test(false) account.[Optional] Reason for the event.[Optional] Object containing the reference to API resource relevant to the event.The type of the event. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription[Optional] Authentication context needed to fetch the event or related object.Time at which the object was created.getId()
Unique identifier for the event.Livemode indicates if the event is from a production(true) or test(false) account.[Optional] Reason for the event.[Optional] Object containing the reference to API resource relevant to the event.getType()
The type of the event.
-
Field Details
-
id
Unique identifier for the event. -
type
The type of the event. -
created
Time at which the object was created. -
livemode
Livemode indicates if the event is from a production(true) or test(false) account. -
context
[Optional] Authentication context needed to fetch the event or related object. -
reason
[Optional] Reason for the event.
-
-
Constructor Details
-
ThinEvent
public ThinEvent()
-
-
Method Details
-
getId
Unique identifier for the event. -
getType
The type of the event. -
getCreated
Time at which the object was created. -
getLivemode
Livemode indicates if the event is from a production(true) or test(false) account. -
getContext
[Optional] Authentication context needed to fetch the event or related object. -
getRelatedObject
[Optional] Object containing the reference to API resource relevant to the event. -
getReason
[Optional] Reason for the event.
-