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 4468b33 commit c3741e4Copy full SHA for c3741e4
threescale_api/resources.py
@@ -1189,10 +1189,10 @@ def __init__(self, **kwargs):
1189
super().__init__(**kwargs)
1190
1191
def approve(self, entity_id: int, **kwargs):
1192
- return self.client.approve_service_subscription(entity_id=self.entity_id, **kwargs)
+ return self.client.approve(entity_id=self.entity_id, **kwargs)
1193
1194
def change_plan(self, entity_id: int, **kwargs):
1195
- return self.client.change_plan_service_subscription(entity_id=self.entity_id, **kwargs)
+ return self.client.change_plan(entity_id=self.entity_id, **kwargs)
1196
1197
1198
class Metric(DefaultResource):
0 commit comments