Package com.braintrustdata.api.models
Class ViewDeleteParams.Body.Builder
-
- All Implemented Interfaces:
public final class ViewDeleteParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
objectId
final ViewDeleteParams.Body.Builder objectId(String objectId)
The id of the object the view applies to
-
objectId
final ViewDeleteParams.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 ViewDeleteParams.Body.Builder objectType(AclObjectType objectType)
The object type that the ACL applies to
-
objectType
final ViewDeleteParams.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.
-
additionalProperties
final ViewDeleteParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ViewDeleteParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ViewDeleteParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ViewDeleteParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ViewDeleteParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ViewDeleteParams.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()
-
-
-
-