您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
21 行
672 B
21 行
672 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
using HuaweiService;
|
|
|
|
namespace HuaweiService.Auth
|
|
{
|
|
public class VerifyCodeResult_Data : IHmsBaseClass{
|
|
public string name => "com.huawei.agconnect.auth.VerifyCodeResult";
|
|
}
|
|
public class VerifyCodeResult :HmsClass<VerifyCodeResult_Data>
|
|
{
|
|
public VerifyCodeResult (string arg0, string arg1): base(arg0, arg1) { }
|
|
public VerifyCodeResult (): base() { }
|
|
public string getShortestInterval() {
|
|
return Call<string>("getShortestInterval");
|
|
}
|
|
public string getValidityPeriod() {
|
|
return Call<string>("getValidityPeriod");
|
|
}
|
|
}
|
|
}
|