Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 3 KB

MarketProviderProductMetaData.md

File metadata and controls

49 lines (40 loc) · 3 KB

MarketProviderProductMetaData

Properties

Name Type Description Notes
base_name str The provider's base name. [optional]
billing_type str The provider's billing type [optional]
description str The product's description. [optional]
display_name str The product's display name. [optional]
enabled int Whether the product is enabled in the cPanel Market. * `1` - Enabled. * `0` - Not enabled. [optional]
icon str The product's display icon. [optional]
icon_mime_type str The icon's file type. [optional]
license_term int The providers license term [optional]
max_users int The maximum number of users. [optional]
maximum_server_price float The maximum price that the system will allow for the product. [optional]
minimum_server_price float The minimum price that the system will allow for the product. [optional]
price float The product's price. [optional]
price_unit str The currency code of the product's price. [optional]
product str The product name. [optional]
product_category str The product's category. [optional]
product_group str The product's group. [optional]
product_id int The product's ID. [optional]
provider_display_name str The cPanel Market provider's display name. Note: The `_DISPLAY_NAME` attribute in the cPanel Market provider module contains this value. [optional]
provider_name str The cPanel Market provider's name. [optional]
recommended int Whether the product is recommended. * `1` — We recommend the product. * `0` — We do not recommend the product. [optional]
requires_ip int Whether the product requires an IP address. * `1` — Requires an IP. * `0` — Does not require an IP. [optional]

Example

from clientapi_cpanel.models.market_provider_product_meta_data import MarketProviderProductMetaData

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

# convert the object into a dict
market_provider_product_meta_data_dict = market_provider_product_meta_data_instance.to_dict()
# create an instance of MarketProviderProductMetaData from a dict
market_provider_product_meta_data_from_dict = MarketProviderProductMetaData.from_dict(market_provider_product_meta_data_dict)

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