您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
606 B
20 行
606 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HuaweiService.CloudFunction
|
|
{
|
|
public class FunctionResult_Data : IHmsBaseClass{
|
|
public string name => "com.huawei.agconnect.function.FunctionResult";
|
|
}
|
|
public class FunctionResult :HmsClass<FunctionResult_Data>
|
|
{
|
|
public FunctionResult (): base() { }
|
|
public T getValue<T>(T arg0) {
|
|
var jsonString = Call<string>("getValue");
|
|
return JsonSerializer.FromJson<T>(jsonString);
|
|
}
|
|
public string getValue() {
|
|
return Call<string>("getValue");
|
|
}
|
|
}
|
|
}
|