Class BetaFallbackBlockParam.Builder
-
- All Implemented Interfaces:
public final class BetaFallbackBlockParam.BuilderA builder for BetaFallbackBlockParam.
-
-
Method Summary
-
-
Method Detail
-
from
final BetaFallbackBlockParam.Builder from(BetaFallbackInfoParam from)
Identifies one hop of a fallback transition.
-
from
final BetaFallbackBlockParam.Builder from(JsonField<BetaFallbackInfoParam> from)
Sets Builder.from to an arbitrary JSON value.
You should usually call Builder.from with a well-typed BetaFallbackInfoParam value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
from
final BetaFallbackBlockParam.Builder from(BetaFallbackInfo from)
Alias for calling Builder.from with
from.toParam().
-
to
final BetaFallbackBlockParam.Builder to(BetaFallbackInfoParam to)
Identifies one hop of a fallback transition.
-
to
final BetaFallbackBlockParam.Builder to(JsonField<BetaFallbackInfoParam> to)
Sets Builder.to to an arbitrary JSON value.
You should usually call Builder.to with a well-typed BetaFallbackInfoParam value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
to
final BetaFallbackBlockParam.Builder to(BetaFallbackInfo to)
Alias for calling Builder.to with
to.toParam().
-
type
final BetaFallbackBlockParam.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("fallback")This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaFallbackBlockParam.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaFallbackBlockParam.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaFallbackBlockParam.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaFallbackBlockParam.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaFallbackBlockParam.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaFallbackBlockParam build()
Returns an immutable instance of BetaFallbackBlockParam.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.from() .to()
-
-
-
-