Package com.courier.models.send
Class SendMessageParams.Message.Expiry.ExpiresIn
-
- All Implemented Interfaces:
public final class SendMessageParams.Message.Expiry.ExpiresInDuration in ms or ISO8601 duration (e.g. P1DT4H).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceSendMessageParams.Message.Expiry.ExpiresIn.VisitorAn interface that defines how to map each variant of ExpiresIn to a value of type T.
-
Method Summary
Modifier and Type Method Description final Optional<String>string()final Optional<Long>integer()final BooleanisString()final BooleanisInteger()final StringasString()final LongasInteger()final Optional<JsonValue>_json()final <T extends Any> Taccept(SendMessageParams.Message.Expiry.ExpiresIn.Visitor<T> visitor)Maps this instance's current variant to a value of type T using the given visitor. final SendMessageParams.Message.Expiry.ExpiresInvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static SendMessageParams.Message.Expiry.ExpiresInofString(String string)final static SendMessageParams.Message.Expiry.ExpiresInofInteger(Long integer)-
-
Method Detail
-
accept
final <T extends Any> T accept(SendMessageParams.Message.Expiry.ExpiresIn.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 = expiresIn.accept(new ExpiresIn.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 SendMessageParams.Message.Expiry.ExpiresIn 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 SendMessageParams.Message.Expiry.ExpiresIn ofString(String string)
-
ofInteger
final static SendMessageParams.Message.Expiry.ExpiresIn ofInteger(Long integer)
-
-
-
-