Interface PreferenceSetChannelTypes.Email.Visitor
-
- All Implemented Interfaces:
public interface PreferenceSetChannelTypes.Email.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract TvisitBool(Boolean bool)abstract TvisitPreferenceSetChannelTypeSetting(PreferenceSetChannelTypeSetting preferenceSetChannelTypeSetting)A set of settings for a channel type. Tunknown(JsonValue json)Maps an unknown variant of Email to a value of type T. -
-
Method Detail
-
visitPreferenceSetChannelTypeSetting
abstract T visitPreferenceSetChannelTypeSetting(PreferenceSetChannelTypeSetting preferenceSetChannelTypeSetting)
A set of settings for a channel type. Currently, this can only be a list of conditions to apply.
-
unknown
T unknown(JsonValue json)
Maps an unknown variant of Email to a value of type T.
An instance of Email can contain an unknown variant if it was deserialized from data that doesn't match any known variant. For example, if the SDK is on an older version than the API, then the API may respond with new variants that the SDK is unaware of.
-
-
-
-