Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 948 Bytes

File metadata and controls

29 lines (20 loc) · 948 Bytes

SSOInitiateResponse

Properties

Name Type Description Notes
redirect_url str

Example

from ksapi.models.sso_initiate_response import SSOInitiateResponse

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

# convert the object into a dict
sso_initiate_response_dict = sso_initiate_response_instance.to_dict()
# create an instance of SSOInitiateResponse from a dict
sso_initiate_response_from_dict = SSOInitiateResponse.from_dict(sso_initiate_response_dict)

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