Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.28 KB

File metadata and controls

34 lines (25 loc) · 1.28 KB

IdentitySourceSession

Properties

Name Type Description Notes
created datetime [optional] [readonly]
id str [optional] [readonly]
identity_source_id str [optional] [readonly]
import_type str [optional] [readonly]
last_updated datetime [optional] [readonly]
status IdentitySourceSessionStatus [optional]

Example

from okta.models.identity_source_session import IdentitySourceSession

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

# convert the object into a dict
identity_source_session_dict = identity_source_session_instance.to_dict()
# create an instance of IdentitySourceSession from a dict
identity_source_session_from_dict = IdentitySourceSession.from_dict(identity_source_session_dict)

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