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