File tree Expand file tree Collapse file tree
src/main/java/com/squareup/square Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16851,32 +16851,6 @@ client.vendors().update(
1685116851</dl>
1685216852
1685316853
16854- </dd>
16855- </dl>
16856- </details>
16857-
16858- ## Mobile
16859- <details><summary><code>client.mobile.authorizationCode()</code></summary>
16860- <dl>
16861- <dd>
16862-
16863- #### 🔌 Usage
16864-
16865- <dl>
16866- <dd>
16867-
16868- <dl>
16869- <dd>
16870-
16871- ```java
16872- client.mobile().authorizationCode();
16873- ```
16874- </dd>
16875- </dl>
16876- </dd>
16877- </dl>
16878-
16879-
1688016854</dd>
1688116855</dl>
1688216856</details>
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -78,8 +78,6 @@ public class AsyncSquareClient {
7878
7979 protected final Supplier <AsyncVendorsClient > vendorsClient ;
8080
81- protected final Supplier <AsyncMobileClient > mobileClient ;
82-
8381 protected final Supplier <AsyncCashDrawersClient > cashDrawersClient ;
8482
8583 protected final Supplier <AsyncWebhooksClient > webhooksClient ;
@@ -119,7 +117,6 @@ public AsyncSquareClient(ClientOptions clientOptions) {
119117 this .terminalClient = Suppliers .memoize (() -> new AsyncTerminalClient (clientOptions ));
120118 this .transferOrdersClient = Suppliers .memoize (() -> new AsyncTransferOrdersClient (clientOptions ));
121119 this .vendorsClient = Suppliers .memoize (() -> new AsyncVendorsClient (clientOptions ));
122- this .mobileClient = Suppliers .memoize (() -> new AsyncMobileClient (clientOptions ));
123120 this .cashDrawersClient = Suppliers .memoize (() -> new AsyncCashDrawersClient (clientOptions ));
124121 this .webhooksClient = Suppliers .memoize (() -> new AsyncWebhooksClient (clientOptions ));
125122 }
@@ -256,10 +253,6 @@ public AsyncVendorsClient vendors() {
256253 return this .vendorsClient .get ();
257254 }
258255
259- public AsyncMobileClient mobile () {
260- return this .mobileClient .get ();
261- }
262-
263256 public AsyncCashDrawersClient cashDrawers () {
264257 return this .cashDrawersClient .get ();
265258 }
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -78,8 +78,6 @@ public class SquareClient {
7878
7979 protected final Supplier <VendorsClient > vendorsClient ;
8080
81- protected final Supplier <MobileClient > mobileClient ;
82-
8381 protected final Supplier <CashDrawersClient > cashDrawersClient ;
8482
8583 protected final Supplier <WebhooksClient > webhooksClient ;
@@ -119,7 +117,6 @@ public SquareClient(ClientOptions clientOptions) {
119117 this .terminalClient = Suppliers .memoize (() -> new TerminalClient (clientOptions ));
120118 this .transferOrdersClient = Suppliers .memoize (() -> new TransferOrdersClient (clientOptions ));
121119 this .vendorsClient = Suppliers .memoize (() -> new VendorsClient (clientOptions ));
122- this .mobileClient = Suppliers .memoize (() -> new MobileClient (clientOptions ));
123120 this .cashDrawersClient = Suppliers .memoize (() -> new CashDrawersClient (clientOptions ));
124121 this .webhooksClient = Suppliers .memoize (() -> new WebhooksClient (clientOptions ));
125122 }
@@ -256,10 +253,6 @@ public VendorsClient vendors() {
256253 return this .vendorsClient .get ();
257254 }
258255
259- public MobileClient mobile () {
260- return this .mobileClient .get ();
261- }
262-
263256 public CashDrawersClient cashDrawers () {
264257 return this .cashDrawersClient .get ();
265258 }
You can’t perform that action at this time.
0 commit comments