| Name | Type | Description | Notes |
|---|---|---|---|
| x5c | List[str] | [optional] |
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)