Skip to content

Commit

Permalink
Merge pull request #93 from Onemind-Services-LLC/fix/endpoint
Browse files Browse the repository at this point in the history
Fix Endpoint Naming
  • Loading branch information
yash-pal1 authored Apr 26, 2024
2 parents 8b7fc37 + 2526053 commit 83b169b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jelastic/api/billing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ class _Integration(Billing):
Ref: https://docs.jelastic.com/api/private/#!/api/administration.Integration
"""

_endpoint = "integration"
_endpoint2 = "integration"

def GetInvoiceUrl(self, invoice_id: int, ruk: str = None):
"""
Expand Down Expand Up @@ -1529,7 +1529,7 @@ class _Pricing(Billing):
Ref: https://docs.jelastic.com/api/private/#!/api/billing.Pricing
"""

endpoint = "pricing"
_endpoint2 = "pricing"

def AddPricing(
self,
Expand Down Expand Up @@ -2351,7 +2351,7 @@ class _Subscription(Billing):
Ref: https://docs.jelastic.com/api/private/#!/api/billing.Subscription
"""

_endpoint = "subscription"
_endpoint2 = "subscription"

def Cancel(
self,
Expand Down

0 comments on commit 83b169b

Please sign in to comment.