You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
-
-
-
- [Serializable]
- public class LoginRequest: WWWRequest
- {
- public string phone;
- public string code;
- }
-
- [Serializable]
- public class LoginResponse : WWWResponse
- {
- public string message;
- }
-
- [Serializable]
- public class CodeRequest: WWWRequest
- {
- public string phone;
- }
-
- [Serializable]
- public class CodeResponse : WWWResponse
- {
- public string message;
- public string error;
- }
-
-
- [Serializable]
- public class PayRequest: WWWRequest
- {
- public string phone;
- public int money;
- public string clientIp;
- }
-
- [Serializable]
- public class PayResponse : WWWResponse
- {
- public int code;
- public PayResponseData data;
- public string message;
- }
-
- [Serializable]
- public class PayResponseData
- {
- public string orderno;
- public string pay_url;
- }
-
- [Serializable]
- public class PaymentStatusRequest : WWWRequest
- {
- public string orderno;
- }
-
- [Serializable]
- public class PaymentStatusResponse : WWWResponse
- {
- public int code;
- public string data;
- public string message;
- }
-
- [Serializable]
- public class WxAndPhoneLoginRequest : WWWRequest
- {
- public string uinid;
- public string iphone_num;
- }
-
- [Serializable]
- public class WxAndPhoneLoginResponse : WWWResponse
- {
- public int code;
- public string message;
- }
|