Class AutomationTemplateListResponse.Builder
-
- All Implemented Interfaces:
public final class AutomationTemplateListResponse.BuilderA builder for AutomationTemplateListResponse.
-
-
Method Summary
-
-
Method Detail
-
cursor
final AutomationTemplateListResponse.Builder cursor(String cursor)
A cursor token for pagination. Present when there are more results available.
-
cursor
final AutomationTemplateListResponse.Builder cursor(JsonField<String> cursor)
Sets Builder.cursor to an arbitrary JSON value.
You should usually call Builder.cursor with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
templates
final AutomationTemplateListResponse.Builder templates(List<AutomationTemplate> templates)
-
templates
final AutomationTemplateListResponse.Builder templates(JsonField<List<AutomationTemplate>> templates)
Sets Builder.templates to an arbitrary JSON value.
You should usually call Builder.templates with a well-typed
List<AutomationTemplate>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addTemplate
final AutomationTemplateListResponse.Builder addTemplate(AutomationTemplate template)
Adds a single AutomationTemplate to templates.
-
additionalProperties
final AutomationTemplateListResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AutomationTemplateListResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AutomationTemplateListResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AutomationTemplateListResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AutomationTemplateListResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final AutomationTemplateListResponse build()
Returns an immutable instance of AutomationTemplateListResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-