Class FeedListItemsResponse.Source.Builder
-
- All Implemented Interfaces:
public final class FeedListItemsResponse.Source.BuilderA builder for Source.
-
-
Method Summary
-
-
Method Detail
-
_typename
final FeedListItemsResponse.Source.Builder _typename(String _typename)
The typename of the schema.
-
_typename
final FeedListItemsResponse.Source.Builder _typename(JsonField<String> _typename)
Sets Builder._typename to an arbitrary JSON value.
You should usually call Builder._typename with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
categories
final FeedListItemsResponse.Source.Builder categories(List<String> categories)
Categories this workflow belongs to.
-
categories
final FeedListItemsResponse.Source.Builder categories(JsonField<List<String>> categories)
Sets Builder.categories to an arbitrary JSON value.
You should usually call Builder.categories with a well-typed
List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addCategory
final FeedListItemsResponse.Source.Builder addCategory(String category)
Adds a single String to categories.
-
key
final FeedListItemsResponse.Source.Builder key(String key)
The key of the workflow.
-
key
final FeedListItemsResponse.Source.Builder key(JsonField<String> key)
Sets Builder.key to an arbitrary JSON value.
You should usually call Builder.key with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
versionId
final FeedListItemsResponse.Source.Builder versionId(String versionId)
The workflow version ID.
-
versionId
final FeedListItemsResponse.Source.Builder versionId(JsonField<String> versionId)
Sets Builder.versionId to an arbitrary JSON value.
You should usually call Builder.versionId 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 FeedListItemsResponse.Source.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FeedListItemsResponse.Source.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FeedListItemsResponse.Source.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FeedListItemsResponse.Source.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FeedListItemsResponse.Source.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FeedListItemsResponse.Source build()
Returns an immutable instance of Source.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
._typename() .categories() .key() .versionId()
-
-
-
-