Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.31 KB

File metadata and controls

43 lines (34 loc) · 2.31 KB

MerchantSubscriptionCreatePreviewPost200ResponseData

Properties

Name Type Description Notes
addon_params List[UnibeeApiBeanPlanAddonParam] [optional]
addons List[UnibeeApiBeanPlanAddonDetail] [optional]
currency str [optional]
email str [optional]
gateway UnibeeApiBeanGatewaySimplify [optional]
invoice UnibeeApiBeanInvoiceSimplify [optional]
plan UnibeeApiBeanPlanSimplify [optional]
quantity int [optional]
tax_percentage int [optional]
total_amount int [optional]
user_id int [optional]
vat_country_code str [optional]
vat_country_name str [optional]
vat_number str [optional]
vat_number_validate UnibeeApiBeanValidResult [optional]

Example

from openapi_client.models.merchant_subscription_create_preview_post200_response_data import MerchantSubscriptionCreatePreviewPost200ResponseData

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

# convert the object into a dict
merchant_subscription_create_preview_post200_response_data_dict = merchant_subscription_create_preview_post200_response_data_instance.to_dict()
# create an instance of MerchantSubscriptionCreatePreviewPost200ResponseData from a dict
merchant_subscription_create_preview_post200_response_data_form_dict = merchant_subscription_create_preview_post200_response_data.from_dict(merchant_subscription_create_preview_post200_response_data_dict)

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