Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 871 Bytes

File metadata and controls

29 lines (20 loc) · 871 Bytes

SpCertificate

Properties

Name Type Description Notes
x5c List[str] [optional]

Example

from okta.models.sp_certificate import SpCertificate

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

# convert the object into a dict
sp_certificate_dict = sp_certificate_instance.to_dict()
# create an instance of SpCertificate from a dict
sp_certificate_from_dict = SpCertificate.from_dict(sp_certificate_dict)

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