Class PaymentMethodBase
- java.lang.Object
-
- com.checkout.handlepaymentsandpayouts.setups.entities.paymentMethods.common.PaymentMethodBase
-
-
Constructor Summary
Constructors Constructor Description PaymentMethodBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.util.List<java.lang.String>getFlags()Configuration flags for the payment methodPaymentMethodInitializationgetInitialization()Default: "disabled" The initialization state of the payment method.java.lang.StringgetStatus()The status of the payment methodinthashCode()voidsetFlags(java.util.List<java.lang.String> flags)Configuration flags for the payment methodvoidsetInitialization(PaymentMethodInitialization initialization)Default: "disabled" The initialization state of the payment method.voidsetStatus(java.lang.String status)The status of the payment methodjava.lang.StringtoString()
-
-
-
Method Detail
-
getStatus
public java.lang.String getStatus()
The status of the payment method
-
getFlags
public java.util.List<java.lang.String> getFlags()
Configuration flags for the payment method
-
getInitialization
public PaymentMethodInitialization getInitialization()
Default: "disabled" The initialization state of the payment method. When you create a Payment Setup, this defaults to disabled. Enum: "disabled" "enabled"
-
setStatus
public void setStatus(java.lang.String status)
The status of the payment method
-
setFlags
public void setFlags(java.util.List<java.lang.String> flags)
Configuration flags for the payment method
-
setInitialization
public void setInitialization(PaymentMethodInitialization initialization)
Default: "disabled" The initialization state of the payment method. When you create a Payment Setup, this defaults to disabled. Enum: "disabled" "enabled"
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-