NewKeyAssociation

Properties

Name

Type

Description

Notes

name

str

key_id

str

Example

from h2ogpte.rest_async.models.new_key_association import NewKeyAssociation

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

# convert the object into a dict
new_key_association_dict = new_key_association_instance.to_dict()
# create an instance of NewKeyAssociation from a dict
new_key_association_from_dict = NewKeyAssociation.from_dict(new_key_association_dict)