| Name |
Type |
Description |
Notes |
| name |
str |
The service plan by name if it is necessary to create a subscription to a certain service plan. |
|
from plesk_client.models.plan_reference import PlanReference
# TODO update the JSON string below
json = "{}"
# create an instance of PlanReference from a JSON string
plan_reference_instance = PlanReference.from_json(json)
# print the JSON string representation of the object
print(PlanReference.to_json())
# convert the object into a dict
plan_reference_dict = plan_reference_instance.to_dict()
# create an instance of PlanReference from a dict
plan_reference_from_dict = PlanReference.from_dict(plan_reference_dict)
[Back to Model list] [Back to API list] [Back to README]