Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

CreatePortalSessionRequest

Properties

Name Type Description Notes
return_url str

Example

from ksapi.models.create_portal_session_request import CreatePortalSessionRequest

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

# convert the object into a dict
create_portal_session_request_dict = create_portal_session_request_instance.to_dict()
# create an instance of CreatePortalSessionRequest from a dict
create_portal_session_request_from_dict = CreatePortalSessionRequest.from_dict(create_portal_session_request_dict)

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