Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

VPSV1PublicKeyStoreRequest.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

VPSV1PublicKeyStoreRequest

Properties

Name Type Description Notes
name str
key str

Example

from hostinger_api.models.vpsv1_public_key_store_request import VPSV1PublicKeyStoreRequest

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

# convert the object into a dict
vpsv1_public_key_store_request_dict = vpsv1_public_key_store_request_instance.to_dict()
# create an instance of VPSV1PublicKeyStoreRequest from a dict
vpsv1_public_key_store_request_from_dict = VPSV1PublicKeyStoreRequest.from_dict(vpsv1_public_key_store_request_dict)

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