您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
624 B
22 行
624 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HuaweiService.CloudStorage
|
|
{
|
|
public class ListResult_Data : IHmsBaseClass{
|
|
public string name => "com.huawei.agconnect.cloud.storage.core.ListResult";
|
|
}
|
|
public class ListResult :HmsClass<ListResult_Data>
|
|
{
|
|
public ListResult (): base() { }
|
|
public List getFileList() {
|
|
return Call<List>("getFileList");
|
|
}
|
|
public List getDirList() {
|
|
return Call<List>("getDirList");
|
|
}
|
|
public string getPageMarker() {
|
|
return Call<string>("getPageMarker");
|
|
}
|
|
}
|
|
}
|