Package io.moov.sdk.models.components
Class PaymentLinkDisplayOptions
- java.lang.Object
-
- io.moov.sdk.models.components.PaymentLinkDisplayOptions
-
public class PaymentLinkDisplayOptions extends java.lang.ObjectPaymentLinkDisplayOptionsCustomizable display options for a payment link.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPaymentLinkDisplayOptions.Builder
-
Constructor Summary
Constructors Constructor Description PaymentLinkDisplayOptions(java.lang.String title, java.lang.String description, CallToAction callToAction)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PaymentLinkDisplayOptions.Builderbuilder()CallToActioncallToAction()The text to be displayed on web form's submit button.java.lang.Stringdescription()A payment description displayed to the user.booleanequals(java.lang.Object o)inthashCode()java.lang.Stringtitle()The payment page title displayed to the user.java.lang.StringtoString()PaymentLinkDisplayOptionswithCallToAction(CallToAction callToAction)The text to be displayed on web form's submit button.PaymentLinkDisplayOptionswithDescription(java.lang.String description)A payment description displayed to the user.PaymentLinkDisplayOptionswithTitle(java.lang.String title)The payment page title displayed to the user.
-
-
-
Constructor Detail
-
PaymentLinkDisplayOptions
public PaymentLinkDisplayOptions(java.lang.String title, java.lang.String description, CallToAction callToAction)
-
-
Method Detail
-
title
public java.lang.String title()
The payment page title displayed to the user.
-
description
public java.lang.String description()
A payment description displayed to the user.
-
callToAction
public CallToAction callToAction()
The text to be displayed on web form's submit button.If set to "auto" the UI will automatically select between "pay" and "confirm" for payments and payouts respectively.
-
builder
public static PaymentLinkDisplayOptions.Builder builder()
-
withTitle
public PaymentLinkDisplayOptions withTitle(java.lang.String title)
The payment page title displayed to the user.
-
withDescription
public PaymentLinkDisplayOptions withDescription(java.lang.String description)
A payment description displayed to the user.
-
withCallToAction
public PaymentLinkDisplayOptions withCallToAction(CallToAction callToAction)
The text to be displayed on web form's submit button.If set to "auto" the UI will automatically select between "pay" and "confirm" for payments and payouts respectively.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-