Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1003 Bytes

AssignVipResponse.md

File metadata and controls

30 lines (21 loc) · 1003 Bytes

AssignVipResponse

Properties

Name Type Description Notes
data List[VipResponse]
links SelfLinks

Example

from pfruck_contabo.models.assign_vip_response import AssignVipResponse

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

# convert the object into a dict
assign_vip_response_dict = assign_vip_response_instance.to_dict()
# create an instance of AssignVipResponse from a dict
assign_vip_response_from_dict = AssignVipResponse.from_dict(assign_vip_response_dict)

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