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