using UnityEngine; using System.Collections.Generic; namespace HuaweiService.CloudStorage { public class FileMetadata_Data : IHmsBaseClass{ public string name => "com.huawei.agconnect.cloud.storage.core.FileMetadata"; } public class FileMetadata :HmsClass { public FileMetadata (): base() { } public void setSHA256Hash(string arg0) { Call("setSHA256Hash", arg0); } public void setContentType(string arg0) { Call("setContentType", arg0); } public void setCacheControl(string arg0) { Call("setCacheControl", arg0); } public void setContentDisposition(string arg0) { Call("setContentDisposition", arg0); } public void setContentEncoding(string arg0) { Call("setContentEncoding", arg0); } public void setContentLanguage(string arg0) { Call("setContentLanguage", arg0); } public void setCustomMetadata(Map arg0) { Call("setCustomMetadata", arg0); } public StorageReference getStorageReference() { return Call("getStorageReference"); } public string getBucket() { return Call("getBucket"); } public string getCTime() { return Call("getCTime"); } public string getMTime() { return Call("getMTime"); } public string getName() { return Call("getName"); } public string getPath() { return Call("getPath"); } public Long getSize() { return Call("getSize"); } public string getSHA256Hash() { return Call("getSHA256Hash"); } public string getContentType() { return Call("getContentType"); } public string getCacheControl() { return Call("getCacheControl"); } public string getContentDisposition() { return Call("getContentDisposition"); } public string getContentEncoding() { return Call("getContentEncoding"); } public string getContentLanguage() { return Call("getContentLanguage"); } public Map getCustomMetadata() { return Call("getCustomMetadata"); } } }