You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromclientapi_cpanel.models.market_provider_product_meta_dataimportMarketProviderProductMetaData# TODO update the JSON string belowjson="{}"# create an instance of MarketProviderProductMetaData from a JSON stringmarket_provider_product_meta_data_instance=MarketProviderProductMetaData.from_json(json)
# print the JSON string representation of the objectprint(MarketProviderProductMetaData.to_json())
# convert the object into a dictmarket_provider_product_meta_data_dict=market_provider_product_meta_data_instance.to_dict()
# create an instance of MarketProviderProductMetaData from a dictmarket_provider_product_meta_data_from_dict=MarketProviderProductMetaData.from_dict(market_provider_product_meta_data_dict)