Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.3 KB

File metadata and controls

30 lines (21 loc) · 1.3 KB

VPSV1PublicKeyListResponse

Properties

Name Type Description Notes
data List[VPSV1PublicKeyPublicKeyResource] Array of `VPS.V1.PublicKey.PublicKeyResource` [optional]
meta CommonSchemaPaginationMetaSchema [optional]

Example

from hostinger_api.models.vpsv1_public_key_list_response import VPSV1PublicKeyListResponse

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

# convert the object into a dict
vpsv1_public_key_list_response_dict = vpsv1_public_key_list_response_instance.to_dict()
# create an instance of VPSV1PublicKeyListResponse from a dict
vpsv1_public_key_list_response_from_dict = VPSV1PublicKeyListResponse.from_dict(vpsv1_public_key_list_response_dict)

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