Class ViewUpdateParams.Body.Builder
-
- All Implemented Interfaces:
public final class ViewUpdateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
objectId
final ViewUpdateParams.Body.Builder objectId(String objectId)
The id of the object the view applies to
-
objectId
final ViewUpdateParams.Body.Builder objectId(JsonField<String> objectId)
Sets Builder.objectId to an arbitrary JSON value.
You should usually call Builder.objectId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
objectType
final ViewUpdateParams.Body.Builder objectType(AclObjectType objectType)
The object type that the ACL applies to
-
objectType
final ViewUpdateParams.Body.Builder objectType(JsonField<AclObjectType> objectType)
Sets Builder.objectType to an arbitrary JSON value.
You should usually call Builder.objectType with a well-typed AclObjectType value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
name
final ViewUpdateParams.Body.Builder name(String name)
Name of the view
-
name
final ViewUpdateParams.Body.Builder name(Optional<String> name)
Alias for calling Builder.name with
name.orElse(null).
-
name
final ViewUpdateParams.Body.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
options
final ViewUpdateParams.Body.Builder options(ViewOptions options)
Options for the view in the app
-
options
final ViewUpdateParams.Body.Builder options(Optional<ViewOptions> options)
Alias for calling Builder.options with
options.orElse(null).
-
options
final ViewUpdateParams.Body.Builder options(JsonField<ViewOptions> options)
Sets Builder.options to an arbitrary JSON value.
You should usually call Builder.options with a well-typed ViewOptions value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
userId
final ViewUpdateParams.Body.Builder userId(String userId)
Identifies the user who created the view
-
userId
final ViewUpdateParams.Body.Builder userId(Optional<String> userId)
Alias for calling Builder.userId with
userId.orElse(null).
-
userId
final ViewUpdateParams.Body.Builder userId(JsonField<String> userId)
Sets Builder.userId to an arbitrary JSON value.
You should usually call Builder.userId with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
viewData
final ViewUpdateParams.Body.Builder viewData(ViewData viewData)
The view definition
-
viewData
final ViewUpdateParams.Body.Builder viewData(Optional<ViewData> viewData)
Alias for calling Builder.viewData with
viewData.orElse(null).
-
viewData
final ViewUpdateParams.Body.Builder viewData(JsonField<ViewData> viewData)
Sets Builder.viewData to an arbitrary JSON value.
You should usually call Builder.viewData with a well-typed ViewData value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
viewType
final ViewUpdateParams.Body.Builder viewType(ViewUpdateParams.ViewType viewType)
Type of table that the view corresponds to.
-
viewType
final ViewUpdateParams.Body.Builder viewType(Optional<ViewUpdateParams.ViewType> viewType)
Alias for calling Builder.viewType with
viewType.orElse(null).
-
viewType
final ViewUpdateParams.Body.Builder viewType(JsonField<ViewUpdateParams.ViewType> viewType)
Sets Builder.viewType to an arbitrary JSON value.
You should usually call Builder.viewType with a well-typed ViewType value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ViewUpdateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ViewUpdateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ViewUpdateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ViewUpdateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ViewUpdateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ViewUpdateParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.objectId() .objectType()
-
-
-
-