Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.33 KB

V1beta1JSONWebKey.md

File metadata and controls

36 lines (28 loc) · 1.33 KB

V1beta1JSONWebKey

Properties

Name Type Description Notes
kty str Key Type. [optional]
alg str Algorithm. [optional]
use str Permitted uses for the public keys. [optional]
kid str Key ID. [optional]
n str Used for RSA keys. [optional]
e str Used for RSA keys. [optional]
x str Used for ECDSA keys. [optional]
y str Used for ECDSA keys. [optional]
crv str Used for ECDSA keys. [optional]

Example

from frontier_api.models.v1beta1_json_web_key import V1beta1JSONWebKey

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

# convert the object into a dict
v1beta1_json_web_key_dict = v1beta1_json_web_key_instance.to_dict()
# create an instance of V1beta1JSONWebKey from a dict
v1beta1_json_web_key_form_dict = v1beta1_json_web_key.from_dict(v1beta1_json_web_key_dict)

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