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