Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.1 KB

File metadata and controls

29 lines (21 loc) · 1.1 KB

LinkStoreRequest

Properties

Name Type Description Notes
domain_id str Domain ID from connected short domains from account Please note: only domains in active status accepted
link str Original link where to short link will redirect

Example

from bsg_api.models.link_store_request import LinkStoreRequest

# TODO update the JSON string below
json = "{}"
# create an instance of LinkStoreRequest from a JSON string
link_store_request_instance = LinkStoreRequest.from_json(json)
# print the JSON string representation of the object
print(LinkStoreRequest.to_json())

# convert the object into a dict
link_store_request_dict = link_store_request_instance.to_dict()
# create an instance of LinkStoreRequest from a dict
link_store_request_from_dict = LinkStoreRequest.from_dict(link_store_request_dict)

[Back to Model list] [Back to API list] [Back to README]