public class Checkout extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Checkout.Builder
Class to build instances of
Checkout. |
| Constructor and Description |
|---|
Checkout(String id,
String checkoutPageUrl,
Boolean askForShippingAddress,
String merchantSupportEmail,
String prePopulateBuyerEmail,
Address prePopulateShippingAddress,
String redirectUrl,
Order order,
String createdAt,
List<AdditionalRecipient> additionalRecipients)
Initialization constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
List<AdditionalRecipient> |
getAdditionalRecipients()
Getter for AdditionalRecipients.
|
Boolean |
getAskForShippingAddress()
Getter for AskForShippingAddress.
|
String |
getCheckoutPageUrl()
Getter for CheckoutPageUrl.
|
String |
getCreatedAt()
Getter for CreatedAt.
|
String |
getId()
Getter for Id.
|
String |
getMerchantSupportEmail()
Getter for MerchantSupportEmail.
|
Order |
getOrder()
Getter for Order.
|
String |
getPrePopulateBuyerEmail()
Getter for PrePopulateBuyerEmail.
|
Address |
getPrePopulateShippingAddress()
Getter for PrePopulateShippingAddress.
|
String |
getRedirectUrl()
Getter for RedirectUrl.
|
int |
hashCode() |
Checkout.Builder |
toBuilder()
Builds a new
Checkout.Builder object. |
String |
toString()
Converts this Checkout into string format.
|
public Checkout(String id, String checkoutPageUrl, Boolean askForShippingAddress, String merchantSupportEmail, String prePopulateBuyerEmail, Address prePopulateShippingAddress, String redirectUrl, Order order, String createdAt, List<AdditionalRecipient> additionalRecipients)
id - String value for id.checkoutPageUrl - String value for checkoutPageUrl.askForShippingAddress - Boolean value for askForShippingAddress.merchantSupportEmail - String value for merchantSupportEmail.prePopulateBuyerEmail - String value for prePopulateBuyerEmail.prePopulateShippingAddress - Address value for prePopulateShippingAddress.redirectUrl - String value for redirectUrl.order - Order value for order.createdAt - String value for createdAt.additionalRecipients - List of AdditionalRecipient value for additionalRecipients.public String getId()
public String getCheckoutPageUrl()
public Boolean getAskForShippingAddress()
public String getMerchantSupportEmail()
public String getPrePopulateBuyerEmail()
public Address getPrePopulateShippingAddress()
public String getRedirectUrl()
public Order getOrder()
public String getCreatedAt()
public List<AdditionalRecipient> getAdditionalRecipients()
public String toString()
public Checkout.Builder toBuilder()
Checkout.Builder object.
Creates the instance with the state of the current model.Checkout.Builder objectCopyright © 2022. All rights reserved.