Class BrandTemplate.Builder
-
- All Implemented Interfaces:
public final class BrandTemplate.BuilderA builder for BrandTemplate.
-
-
Method Summary
-
-
Method Detail
-
enabled
final BrandTemplate.Builder enabled(Boolean enabled)
-
enabled
final BrandTemplate.Builder enabled(JsonField<Boolean> enabled)
Sets Builder.enabled to an arbitrary JSON value.
You should usually call Builder.enabled with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
backgroundColor
final BrandTemplate.Builder backgroundColor(String backgroundColor)
-
backgroundColor
final BrandTemplate.Builder backgroundColor(Optional<String> backgroundColor)
Alias for calling Builder.backgroundColor with
backgroundColor.orElse(null).
-
backgroundColor
final BrandTemplate.Builder backgroundColor(JsonField<String> backgroundColor)
Sets Builder.backgroundColor to an arbitrary JSON value.
You should usually call Builder.backgroundColor with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
blocksBackgroundColor
final BrandTemplate.Builder blocksBackgroundColor(String blocksBackgroundColor)
-
blocksBackgroundColor
final BrandTemplate.Builder blocksBackgroundColor(Optional<String> blocksBackgroundColor)
Alias for calling Builder.blocksBackgroundColor with
blocksBackgroundColor.orElse(null).
-
blocksBackgroundColor
final BrandTemplate.Builder blocksBackgroundColor(JsonField<String> blocksBackgroundColor)
Sets Builder.blocksBackgroundColor to an arbitrary JSON value.
You should usually call Builder.blocksBackgroundColor with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
footer
final BrandTemplate.Builder footer(String footer)
-
footer
final BrandTemplate.Builder footer(Optional<String> footer)
Alias for calling Builder.footer with
footer.orElse(null).
-
footer
final BrandTemplate.Builder footer(JsonField<String> footer)
Sets Builder.footer to an arbitrary JSON value.
You should usually call Builder.footer with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
head
final BrandTemplate.Builder head(String head)
-
head
final BrandTemplate.Builder head(Optional<String> head)
Alias for calling Builder.head with
head.orElse(null).
-
head
final BrandTemplate.Builder head(JsonField<String> head)
Sets Builder.head to an arbitrary JSON value.
You should usually call Builder.head with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
header
final BrandTemplate.Builder header(String header)
-
header
final BrandTemplate.Builder header(Optional<String> header)
Alias for calling Builder.header with
header.orElse(null).
-
header
final BrandTemplate.Builder header(JsonField<String> header)
Sets Builder.header to an arbitrary JSON value.
You should usually call Builder.header with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
width
final BrandTemplate.Builder width(String width)
-
width
final BrandTemplate.Builder width(Optional<String> width)
Alias for calling Builder.width with
width.orElse(null).
-
width
final BrandTemplate.Builder width(JsonField<String> width)
Sets Builder.width to an arbitrary JSON value.
You should usually call Builder.width with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BrandTemplate.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BrandTemplate.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BrandTemplate.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BrandTemplate.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BrandTemplate.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BrandTemplate build()
Returns an immutable instance of BrandTemplate.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.enabled()
-
-
-
-