Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.08 KB

V1beta1KeyCredential.md

File metadata and controls

31 lines (23 loc) · 1.08 KB

V1beta1KeyCredential

Properties

Name Type Description Notes
type str [optional]
kid str [optional]
principal_id str [optional]
private_key str [optional] [readonly]

Example

from frontier_api.models.v1beta1_key_credential import V1beta1KeyCredential

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

# convert the object into a dict
v1beta1_key_credential_dict = v1beta1_key_credential_instance.to_dict()
# create an instance of V1beta1KeyCredential from a dict
v1beta1_key_credential_form_dict = v1beta1_key_credential.from_dict(v1beta1_key_credential_dict)

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