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
Subscription ID, use it to find the product once the order completes
[optional]
status
str
[optional]
message
str
Explanation of what happens next
[optional]
Example
fromhostinger_api.models.billing_v1_order_payment_processing_resourceimportBillingV1OrderPaymentProcessingResource# TODO update the JSON string belowjson="{}"# create an instance of BillingV1OrderPaymentProcessingResource from a JSON stringbilling_v1_order_payment_processing_resource_instance=BillingV1OrderPaymentProcessingResource.from_json(json)
# print the JSON string representation of the objectprint(BillingV1OrderPaymentProcessingResource.to_json())
# convert the object into a dictbilling_v1_order_payment_processing_resource_dict=billing_v1_order_payment_processing_resource_instance.to_dict()
# create an instance of BillingV1OrderPaymentProcessingResource from a dictbilling_v1_order_payment_processing_resource_from_dict=BillingV1OrderPaymentProcessingResource.from_dict(billing_v1_order_payment_processing_resource_dict)