Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

CreateIssuerInputBody

Properties

NameTypeDescriptionNotes
client_idstrOIDC client ID for audience validation (recommended)[optional]
issuer_urlstrOIDC issuer URL to trust

Example

fromrevengai.models.create_issuer_input_bodyimportCreateIssuerInputBody# TODO update the JSON string belowjson="{}"# create an instance of CreateIssuerInputBody from a JSON stringcreate_issuer_input_body_instance=CreateIssuerInputBody.from_json(json)
# print the JSON string representation of the objectprint(CreateIssuerInputBody.to_json())
# convert the object into a dictcreate_issuer_input_body_dict=create_issuer_input_body_instance.to_dict()
# create an instance of CreateIssuerInputBody from a dictcreate_issuer_input_body_from_dict=CreateIssuerInputBody.from_dict(create_issuer_input_body_dict)

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