using UnityEngine; using System.Collections.Generic; using HuaweiService; namespace HuaweiService.Auth { public class Scope_Data : IHmsBaseClass{ public string name => "com.huawei.hms.support.api.entity.auth.Scope"; } public class Scope :HmsClass { public Scope (): base() { } public Scope (string arg0): base(arg0) { } public int hashCode() { return Call("hashCode"); } public string toString() { return Call("toString"); } public int describeContents() { return Call("describeContents"); } public void writeToParcel(Parcel arg0, int arg1) { Call("writeToParcel", arg0, arg1); } public string getScopeUri() { return Call("getScopeUri"); } } }