示例#1
0
 public  Client(string APIKEY)
 {
     this.setToken(APIKEY);
     this._auth = new Auth(this);
     this._api = new Api(this);
     this.user = this.api.user;
 }
示例#2
0
 public Client()
 {
     this._auth = new Auth(this);
     this._api = new Api(this);
     this.user = this.api.user;
 }
示例#3
0
 public User(Api api)
 {
     this._api = api;
 }
示例#4
0
 public Merchant(Api api) {
     this._api = api;
 }
示例#5
0
 public Invoices(Api api) {
     this._api = api;
 }
示例#6
0
 public Accounts(Api api)
 {
     this._api = api;
 }