Class AdditionalSettingsResponse


  • public class AdditionalSettingsResponse
    extends Object
    AdditionalSettingsResponse
    • Constructor Detail

      • AdditionalSettingsResponse

        public AdditionalSettingsResponse()
    • Method Detail

      • excludeEventCodes

        public AdditionalSettingsResponse excludeEventCodes​(List<String> excludeEventCodes)
        Object containing list of event codes for which the notification will not be sent.
        Parameters:
        excludeEventCodes -
        Returns:
        the current AdditionalSettingsResponse instance, allowing for method chaining
      • getExcludeEventCodes

        public List<String> getExcludeEventCodes()
        Object containing list of event codes for which the notification will not be sent.
        Returns:
        excludeEventCodes
      • setExcludeEventCodes

        public void setExcludeEventCodes​(List<String> excludeEventCodes)
        Object containing list of event codes for which the notification will not be sent.
        Parameters:
        excludeEventCodes -
      • includeEventCodes

        public AdditionalSettingsResponse includeEventCodes​(List<String> includeEventCodes)
        Object containing list of event codes for which the notification will be sent.
        Parameters:
        includeEventCodes -
        Returns:
        the current AdditionalSettingsResponse instance, allowing for method chaining
      • getIncludeEventCodes

        public List<String> getIncludeEventCodes()
        Object containing list of event codes for which the notification will be sent.
        Returns:
        includeEventCodes
      • setIncludeEventCodes

        public void setIncludeEventCodes​(List<String> includeEventCodes)
        Object containing list of event codes for which the notification will be sent.
        Parameters:
        includeEventCodes -
      • properties

        public AdditionalSettingsResponse properties​(Map<String,​Boolean> properties)
        Object containing boolean key-value pairs. The key can be any [standard webhook additional setting](https://docs.adyen.com/development-resources/webhooks/additional-settings), and the value indicates if the setting is enabled. For example, `captureDelayHours`: **true** means the standard notifications you get will contain the number of hours remaining until the payment will be captured.
        Parameters:
        properties -
        Returns:
        the current AdditionalSettingsResponse instance, allowing for method chaining
      • getProperties

        public Map<String,​Boolean> getProperties()
        Object containing boolean key-value pairs. The key can be any [standard webhook additional setting](https://docs.adyen.com/development-resources/webhooks/additional-settings), and the value indicates if the setting is enabled. For example, `captureDelayHours`: **true** means the standard notifications you get will contain the number of hours remaining until the payment will be captured.
        Returns:
        properties
      • setProperties

        public void setProperties​(Map<String,​Boolean> properties)
        Object containing boolean key-value pairs. The key can be any [standard webhook additional setting](https://docs.adyen.com/development-resources/webhooks/additional-settings), and the value indicates if the setting is enabled. For example, `captureDelayHours`: **true** means the standard notifications you get will contain the number of hours remaining until the payment will be captured.
        Parameters:
        properties -
      • equals

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

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

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

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