Package com.stripe.param
Class ChargeCaptureParams.PaymentDetails.EventDetails.Builder
java.lang.Object
com.stripe.param.ChargeCaptureParams.PaymentDetails.EventDetails.Builder
- Enclosing class:
- ChargeCaptureParams.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 ChargeCaptureParams.PaymentDetails.EventDetails.Builder setAccessControlledVenue(Boolean accessControlledVenue) Indicates if the tickets are digitally checked when entering the venue. -
setAddress
public ChargeCaptureParams.PaymentDetails.EventDetails.Builder setAddress(ChargeCaptureParams.PaymentDetails.EventDetails.Address address) The event location's address. -
setAffiliate
public ChargeCaptureParams.PaymentDetails.EventDetails.Builder setAffiliate(ChargeCaptureParams.PaymentDetails.EventDetails.Affiliate affiliate) Affiliate details for this purchase. -
setCompany
The name of the company. -
setDelivery
public ChargeCaptureParams.PaymentDetails.EventDetails.Builder setDelivery(ChargeCaptureParams.PaymentDetails.EventDetails.Delivery delivery) Delivery details for this purchase. -
setEndsAt
Event end time. Measured in seconds since the Unix epoch. -
putExtraParam
public ChargeCaptureParams.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. SeeChargeCaptureParams.PaymentDetails.EventDetails.extraParams
for the field documentation. -
putAllExtraParam
public ChargeCaptureParams.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. SeeChargeCaptureParams.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.
-