Package com.adyen.model.management
Enum UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum
- java.lang.Object
-
- java.lang.Enum<UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum>
-
- com.adyen.model.management.UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum>
- Enclosing class:
- UpdateCompanyWebhookRequest
public static enum UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum extends Enum<UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum>
Shows how merchant accounts are filtered when configuring the webhook. Possible values: * **includeAccounts**: The webhook is configured for the merchant accounts listed in `filterMerchantAccounts`. * **excludeAccounts**: The webhook is not configured for the merchant accounts listed in `filterMerchantAccounts`. * **allAccounts**: Includes all merchant accounts, and does not require specifying `filterMerchantAccounts`.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLACCOUNTSEXCLUDEACCOUNTSINCLUDEACCOUNTS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnumfromValue(String value)StringgetValue()StringtoString()static UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALLACCOUNTS
public static final UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum ALLACCOUNTS
-
EXCLUDEACCOUNTS
public static final UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum EXCLUDEACCOUNTS
-
INCLUDEACCOUNTS
public static final UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum INCLUDEACCOUNTS
-
-
Method Detail
-
values
public static UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum c : UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum>
-
fromValue
public static UpdateCompanyWebhookRequest.FilterMerchantAccountTypeEnum fromValue(String value)
-
-