We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e05d3f commit 9a3aadcCopy full SHA for 9a3aadc
threescale_api/resources.py
@@ -1252,6 +1252,16 @@ def applications(self) -> Applications:
1252
def users(self) -> AccountUsers:
1253
return AccountUsers(parent=self, instance_klass=AccountUser)
1254
1255
+ def credit_card_set(self, params: dict = None, **kwargs):
1256
+ url = self.url + "/credit_card"
1257
+ response = self.client.rest.put(url=url, json=params, **kwargs)
1258
+ return response
1259
+
1260
+ def credit_card_delete(self, params: dict = None, **kwargs):
1261
1262
+ response = self.client.rest.delete(url=url, json=params, **kwargs)
1263
1264
1265
1266
class UserPermissions(DefaultResource):
1267
pass
0 commit comments