Name |
Type |
Description |
Notes |
name |
str |
The name of the tag. Tags may contain letters, numbers, colons, dashes, and underscores. There is a limit of 255 characters per tag. |
[optional] |
color |
str |
The color of the tag. Color can be specified using hexadecimal value. Default color is #0A78C3 |
[optional] |
from pfruck_contabo.models.update_tag_request import UpdateTagRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateTagRequest from a JSON string
update_tag_request_instance = UpdateTagRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateTagRequest.to_json())
# convert the object into a dict
update_tag_request_dict = update_tag_request_instance.to_dict()
# create an instance of UpdateTagRequest from a dict
update_tag_request_from_dict = UpdateTagRequest.from_dict(update_tag_request_dict)
[Back to Model list] [Back to API list] [Back to README]