File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 105
105
* @property-read Shop $Shop
106
106
* @property-read SmartCollection $SmartCollection
107
107
* @property-read ShopifyPayment $ShopifyPayment
108
+ * @property-read TenderTransaction $TenderTransaction
108
109
* @property-read Theme $Theme
109
110
* @property-read User $User
110
111
* @property-read Webhook $Webhook
148
149
* @method Shop Shop(integer $id = null)
149
150
* @method ShopifyPayment ShopifyPayment()
150
151
* @method SmartCollection SmartCollection(integer $id = null)
152
+ * @method TenderTransaction TenderTransaction()
151
153
* @method Theme Theme(int $id = null)
152
154
* @method User User(integer $id = null)
153
155
* @method Webhook Webhook(integer $id = null)
@@ -199,6 +201,7 @@ class ShopifySDK
199
201
'Shop ' ,
200
202
'SmartCollection ' ,
201
203
'ShopifyPayment ' ,
204
+ 'TenderTransaction ' ,
202
205
'Theme ' ,
203
206
'User ' ,
204
207
'Webhook ' ,
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace PHPShopify ;
4
+
5
+ class TenderTransaction extends ShopifyResource
6
+ {
7
+ /**
8
+ * @inheritDoc
9
+ */
10
+ protected $ resourceKey = 'tender_transaction ' ;
11
+
12
+ /**
13
+ * If the resource is read only. (No POST / PUT / DELETE actions)
14
+ *
15
+ * @var boolean
16
+ */
17
+ public $ readOnly = true ;
18
+ }
You can’t perform that action at this time.
0 commit comments