Class MeApiCredential


  • public class MeApiCredential
    extends Object
    MeApiCredential
    • Constructor Detail

      • MeApiCredential

        public MeApiCredential()
    • Method Detail

      • getActive

        public Boolean getActive()
        Indicates if the API credential is enabled. Must be set to **true** to use the credential in your integration.
        Returns:
        active
      • setActive

        public void setActive​(Boolean active)
      • addAllowedIpAddressesItem

        public MeApiCredential addAllowedIpAddressesItem​(String allowedIpAddressesItem)
      • getAllowedIpAddresses

        public List<String> getAllowedIpAddresses()
        List of IP addresses from which your client can make requests. If the list is empty, we allow requests from any IP. If the list is not empty and we get a request from an IP which is not on the list, you get a security error.
        Returns:
        allowedIpAddresses
      • setAllowedIpAddresses

        public void setAllowedIpAddresses​(List<String> allowedIpAddresses)
      • getAllowedOrigins

        public List<AllowedOrigin> getAllowedOrigins()
        List containing the [allowed origins](https://docs.adyen.com/development-resources/client-side-authentication#allowed-origins) linked to the API credential.
        Returns:
        allowedOrigins
      • setAllowedOrigins

        public void setAllowedOrigins​(List<AllowedOrigin> allowedOrigins)
      • associatedMerchantAccounts

        public MeApiCredential associatedMerchantAccounts​(List<String> associatedMerchantAccounts)
      • addAssociatedMerchantAccountsItem

        public MeApiCredential addAssociatedMerchantAccountsItem​(String associatedMerchantAccountsItem)
      • getAssociatedMerchantAccounts

        public List<String> getAssociatedMerchantAccounts()
        List of merchant accounts that the API credential has explicit access to. If the credential has access to a company, this implies access to all merchant accounts and no merchants for that company will be included.
        Returns:
        associatedMerchantAccounts
      • setAssociatedMerchantAccounts

        public void setAssociatedMerchantAccounts​(List<String> associatedMerchantAccounts)
      • getClientKey

        public String getClientKey()
        Public key used for [client-side authentication](https://docs.adyen.com/development-resources/client-side-authentication). The client key is required for Drop-in and Components integrations.
        Returns:
        clientKey
      • setClientKey

        public void setClientKey​(String clientKey)
      • getCompanyName

        public String getCompanyName()
        Name of the company linked to the API credential.
        Returns:
        companyName
      • setCompanyName

        public void setCompanyName​(String companyName)
      • getDescription

        public String getDescription()
        Description of the API credential.
        Returns:
        description
      • setDescription

        public void setDescription​(String description)
      • getId

        public String getId()
        Unique identifier of the API credential.
        Returns:
        id
      • setId

        public void setId​(String id)
      • getRoles

        public List<String> getRoles()
        List of [roles](https://docs.adyen.com/development-resources/api-credentials#roles-1) for the API credential.
        Returns:
        roles
      • setRoles

        public void setRoles​(List<String> roles)
      • getUsername

        public String getUsername()
        The name of the [API credential](https://docs.adyen.com/development-resources/api-credentials), for example **ws@Company.TestCompany**.
        Returns:
        username
      • setUsername

        public void setUsername​(String username)
      • equals

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

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

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

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