Class FileAddResponse.Builder
-
- All Implemented Interfaces:
public final class FileAddResponse.BuilderA builder for FileAddResponse.
-
-
Method Summary
-
-
Method Detail
-
parts
final FileAddResponse.Builder parts(List<FileAddResponse.Part> parts)
-
parts
final FileAddResponse.Builder parts(JsonField<List<FileAddResponse.Part>> parts)
Sets Builder.parts to an arbitrary JSON value.
You should usually call Builder.parts with a well-typed
List<Part>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addPart
final FileAddResponse.Builder addPart(FileAddResponse.Part part)
-
uploadId
final FileAddResponse.Builder uploadId(String uploadId)
UploadId for the current file
-
uploadId
final FileAddResponse.Builder uploadId(JsonField<String> uploadId)
Sets Builder.uploadId to an arbitrary JSON value.
You should usually call Builder.uploadId 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 FileAddResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FileAddResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FileAddResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FileAddResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FileAddResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FileAddResponse build()
Returns an immutable instance of FileAddResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.parts() .uploadId()
-
-
-
-