Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

RotateOidcKeysRequest.md

File metadata and controls

29 lines (20 loc) · 1.11 KB

RotateOidcKeysRequest

Properties

Name Type Description Notes
signing_key_algorithm str The signing key algorithm the new generated private key is using. Only applicable when `keyType` is `private-keys`. [optional]

Example

from py_logto.models.rotate_oidc_keys_request import RotateOidcKeysRequest

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

# convert the object into a dict
rotate_oidc_keys_request_dict = rotate_oidc_keys_request_instance.to_dict()
# create an instance of RotateOidcKeysRequest from a dict
rotate_oidc_keys_request_from_dict = RotateOidcKeysRequest.from_dict(rotate_oidc_keys_request_dict)

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