Package com.stripe.param
Class PaymentIntentCreateParams.PaymentDetails.EventDetails.Builder
java.lang.Object
com.stripe.param.PaymentIntentCreateParams.PaymentDetails.EventDetails.Builder
- Enclosing class:
- PaymentIntentCreateParams.PaymentDetails.EventDetails
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.setAccessControlledVenue
(Boolean accessControlledVenue) Indicates if the tickets are digitally checked when entering the venue.The event location's address.Affiliate details for this purchase.setCompany
(String company) The name of the company.Delivery details for this purchase.Event end time.Type of the event entertainment (concert, sports event etc).Required. The name of the event.setStartsAt
(Long startsAt) Event start time.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAccessControlledVenue
public PaymentIntentCreateParams.PaymentDetails.EventDetails.Builder setAccessControlledVenue(Boolean accessControlledVenue) Indicates if the tickets are digitally checked when entering the venue. -
setAddress
public PaymentIntentCreateParams.PaymentDetails.EventDetails.Builder setAddress(PaymentIntentCreateParams.PaymentDetails.EventDetails.Address address) The event location's address. -
setAffiliate
public PaymentIntentCreateParams.PaymentDetails.EventDetails.Builder setAffiliate(PaymentIntentCreateParams.PaymentDetails.EventDetails.Affiliate affiliate) Affiliate details for this purchase. -
setCompany
The name of the company. -
setDelivery
public PaymentIntentCreateParams.PaymentDetails.EventDetails.Builder setDelivery(PaymentIntentCreateParams.PaymentDetails.EventDetails.Delivery delivery) Delivery details for this purchase. -
setEndsAt
Event end time. Measured in seconds since the Unix epoch. -
putExtraParam
public PaymentIntentCreateParams.PaymentDetails.EventDetails.Builder putExtraParam(String key, Object value) Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeePaymentIntentCreateParams.PaymentDetails.EventDetails.extraParams
for the field documentation. -
putAllExtraParam
public PaymentIntentCreateParams.PaymentDetails.EventDetails.Builder putAllExtraParam(Map<String, Object> map) Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeePaymentIntentCreateParams.PaymentDetails.EventDetails.extraParams
for the field documentation. -
setGenre
Type of the event entertainment (concert, sports event etc). -
setName
Required. The name of the event. -
setStartsAt
Event start time. Measured in seconds since the Unix epoch.
-