20212223242526
return _instance; } public void configureClient(String key) { KEY=key; client = new Client(API_URL, key); }
17181920212223
29303132333435
super(Hold.class, uri); } }; public static Hold get(String uri) throws HTTPError { return new Hold((new Client()).get(uri)); }
36373839404142
super(Account.class, uri); } }; public static Account get(String uri) throws HTTPError { return new Account((new Client()).get(uri)); }
89909192939495
return create(payload); } }; public static Card get(String uri) throws HTTPError { return new Card((new Client()).get(uri)); }
77787980818283
Customer.class, String.format("/v%s/%s", Settings.VERSION, "customers")); } public static Customer get(String uri) throws HTTPError { return new Customer((new Client()).get(uri)); }
56575859606162