Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

GetTLDPricingResponse

Properties

Name Type Description Notes
result str [optional]
message str Response message [optional]
currency CurrencyInfo [optional]
pricing Dict[str, TldPricingInfo] [optional]

Example

from whmcs_client.models.get_tld_pricing_response import GetTLDPricingResponse

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

# convert the object into a dict
get_tld_pricing_response_dict = get_tld_pricing_response_instance.to_dict()
# create an instance of GetTLDPricingResponse from a dict
get_tld_pricing_response_from_dict = GetTLDPricingResponse.from_dict(get_tld_pricing_response_dict)

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