Class FilePart
- 
                    
                    - All Implemented Interfaces:
 
 public final class FilePartMetadata for a non-image file uploaded through ChatKit. 
- 
                
                    
                    - 
                                
                            
                                Nested Class SummaryNested Classes Modifier and Type Class Description public final classFilePart.BuilderA builder for FilePart. 
 - 
                                
                            
                                Method SummaryModifier and Type Method Description final Stringid()Unique identifier for the uploaded file. final Optional<String>mimeType()MIME type reported for the uploaded file. final Optional<String>name()Original filename supplied by the uploader. final JsonValue_type()Type discriminator that is always file.final Optional<String>uploadUrl()Signed URL for downloading the uploaded file. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>_mimeType()Returns the raw JSON value of mimeType. final JsonField<String>_name()Returns the raw JSON value of name. final JsonField<String>_uploadUrl()Returns the raw JSON value of uploadUrl. final Map<String, JsonValue>_additionalProperties()final FilePart.BuildertoBuilder()final FilePartvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static FilePart.Builderbuilder()Returns a mutable builder for constructing an instance of FilePart. - 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        mimeTypefinal Optional<String> mimeType() MIME type reported for the uploaded file. Defaults to null when unknown. 
 - 
                                        namefinal Optional<String> name() Original filename supplied by the uploader. Defaults to null when unnamed. 
 - 
                                        _typefinal JsonValue _type() Type discriminator that is always file.Expected to always return the following: JsonValue.from("file")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value). 
 - 
                                        uploadUrlfinal Optional<String> uploadUrl() Signed URL for downloading the uploaded file. Defaults to null when no download link is available. 
 - 
                                        _idfinal JsonField<String> _id() Returns the raw JSON value of id. Unlike id, this method doesn't throw if the JSON field has an unexpected type. 
 - 
                                        _mimeTypefinal JsonField<String> _mimeType() Returns the raw JSON value of mimeType. Unlike mimeType, this method doesn't throw if the JSON field has an unexpected type. 
 - 
                                        _namefinal JsonField<String> _name() Returns the raw JSON value of name. Unlike name, this method doesn't throw if the JSON field has an unexpected type. 
 - 
                                        _uploadUrlfinal JsonField<String> _uploadUrl() Returns the raw JSON value of uploadUrl. Unlike uploadUrl, this method doesn't throw if the JSON field has an unexpected type. 
 - 
                                        _additionalPropertiesfinal Map<String, JsonValue> _additionalProperties() 
 - 
                                        toBuilderfinal FilePart.Builder toBuilder() 
 - 
                                        builderfinal static FilePart.Builder builder() Returns a mutable builder for constructing an instance of FilePart. The following fields are required: .id() .mimeType() .name() .uploadUrl()
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-