| Name | Type | Description | Notes |
|---|---|---|---|
| subject | CsrMetadataSubject | [optional] | |
| subject_alt_names | CsrMetadataSubjectAltNames | [optional] |
from okta.models.csr_metadata import CsrMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of CsrMetadata from a JSON string
csr_metadata_instance = CsrMetadata.from_json(json)
# print the JSON string representation of the object
print(CsrMetadata.to_json())
# convert the object into a dict
csr_metadata_dict = csr_metadata_instance.to_dict()
# create an instance of CsrMetadata from a dict
csr_metadata_from_dict = CsrMetadata.from_dict(csr_metadata_dict)