Package com.courier.models.notifications
Class NotificationGetContent.Block.Content
-
- All Implemented Interfaces:
public final class NotificationGetContent.Block.Content
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceNotificationGetContent.Block.Content.VisitorAn interface that defines how to map each variant of Content to a value of type T.
public final classNotificationGetContent.Block.Content.NotificationContentHierarchy
-
Method Summary
-
-
Method Detail
-
notificationContentHierarchy
final Optional<NotificationGetContent.Block.Content.NotificationContentHierarchy> notificationContentHierarchy()
-
isNotificationContentHierarchy
final Boolean isNotificationContentHierarchy()
-
asNotificationContentHierarchy
final NotificationGetContent.Block.Content.NotificationContentHierarchy asNotificationContentHierarchy()
-
accept
final <T extends Any> T accept(NotificationGetContent.Block.Content.Visitor<T> visitor)
Maps this instance's current variant to a value of type T using the given visitor.
Note that this method is not forwards compatible with new variants from the API, unless visitor overrides Visitor.unknown. To handle variants not known to this version of the SDK gracefully, consider overriding Visitor.unknown:
import com.courier.core.JsonValue; import java.util.Optional; Optional<String> result = content.accept(new Content.Visitor<Optional<String>>() { @Override public Optional<String> visitString(String string) { return Optional.of(string.toString()); } // ... @Override public Optional<String> unknown(JsonValue json) { // Or inspect the `json`. return Optional.empty(); } });
-
validate
final NotificationGetContent.Block.Content validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
ofString
final static NotificationGetContent.Block.Content ofString(String string)
-
ofNotificationContentHierarchy
final static NotificationGetContent.Block.Content ofNotificationContentHierarchy(NotificationGetContent.Block.Content.NotificationContentHierarchy notificationContentHierarchy)
-
-
-
-