26 lines
No EOL
932 B
Python
26 lines
No EOL
932 B
Python
from .base import Resource
|
|
from ..constants.url import URL
|
|
|
|
|
|
class RegistrationLink(Resource):
|
|
def __init__(self, client=None):
|
|
super(RegistrationLink, self).__init__(client)
|
|
self.base_url = URL.V1 + URL.REGISTRATION_LINK_URL
|
|
|
|
def create(self, data={}, **kwargs):
|
|
"""
|
|
Create a Registration Link
|
|
Args:
|
|
customer : Details of the customer to whom the registration link will be sent.
|
|
type* : In this case the value is link.
|
|
currency* : Currency used in Order
|
|
amount* : Amount of Order
|
|
description : The count may not be greater than 100.
|
|
subscription_registration : Details of the authorization payment.
|
|
notes : A key-value pair
|
|
|
|
Returns:
|
|
{"success": true}
|
|
"""
|
|
url = "{}/{}".format(self.base_url, 'auth_links')
|
|
return self.post_url(url, data, **kwargs) |