Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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;
- }
|