Class PaymentMethodIssuer


  • public class PaymentMethodIssuer
    extends Object
    PaymentMethodIssuer
    • Constructor Detail

      • PaymentMethodIssuer

        public PaymentMethodIssuer()
    • Method Detail

      • getDisabled

        public Boolean getDisabled()
        A boolean value indicating whether this issuer is unavailable. Can be `true` whenever the issuer is offline.
        Returns:
        disabled
      • setDisabled

        public void setDisabled​(Boolean disabled)
        A boolean value indicating whether this issuer is unavailable. Can be `true` whenever the issuer is offline.
        Parameters:
        disabled -
      • getId

        public String getId()
        The unique identifier of this issuer, to submit in requests to /payments.
        Returns:
        id
      • setId

        public void setId​(String id)
        The unique identifier of this issuer, to submit in requests to /payments.
        Parameters:
        id -
      • getName

        public String getName()
        A localized name of the issuer.
        Returns:
        name
      • setName

        public void setName​(String name)
        A localized name of the issuer.
        Parameters:
        name -
      • equals

        public boolean equals​(Object o)
        Return true if this PaymentMethodIssuer object is equal to o.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • fromJson

        public static PaymentMethodIssuer fromJson​(String jsonString)
                                            throws com.fasterxml.jackson.core.JsonProcessingException
        Create an instance of PaymentMethodIssuer given an JSON string
        Parameters:
        jsonString - JSON string
        Returns:
        An instance of PaymentMethodIssuer
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException - if the JSON string is invalid with respect to PaymentMethodIssuer
      • toJson

        public String toJson()
                      throws com.fasterxml.jackson.core.JsonProcessingException
        Convert an instance of PaymentMethodIssuer to an JSON string
        Returns:
        JSON string
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException