Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

TldPricingInfoAddons

Properties

Name Type Description Notes
dns bool Whether DNS addon pricing is available [optional]
email bool Whether email addon pricing is available [optional]
idprotect bool Whether ID protection addon pricing is available [optional]

Example

from whmcs_client.models.tld_pricing_info_addons import TldPricingInfoAddons

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

# convert the object into a dict
tld_pricing_info_addons_dict = tld_pricing_info_addons_instance.to_dict()
# create an instance of TldPricingInfoAddons from a dict
tld_pricing_info_addons_from_dict = TldPricingInfoAddons.from_dict(tld_pricing_info_addons_dict)

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