pub struct Blob {
pub name: String,
pub content_type: String,
pub content_encoding: String,
pub content_transfer_encoding: String,
pub body: String,
pub metadata: Option<HashMap<String, String>>,
}Fields§
§name: StringThe name of the blob. e.g., “blob.dat”
content_type: String§content_encoding: String§content_transfer_encoding: String(Always base64).
body: StringBase64 encoded content(even if the content is human readable text).
metadata: Option<HashMap<String, String>>