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