Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 886 Bytes

File metadata and controls

32 lines (23 loc) · 886 Bytes

Csr

Properties

Name Type Description Notes
created datetime [optional] [readonly]
csr str [optional] [readonly]
id str [optional] [readonly]
kty str [optional] [readonly]

Example

from okta.models.csr import Csr

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

# convert the object into a dict
csr_dict = csr_instance.to_dict()
# create an instance of Csr from a dict
csr_from_dict = Csr.from_dict(csr_dict)

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