Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.5 KB

File metadata and controls

33 lines (24 loc) · 1.5 KB

MerchantGatewaySetupWebhookPost200Response

Properties

Name Type Description Notes
code int [optional]
data MerchantGatewaySetupWebhookPost200ResponseData [optional]
message str [optional]
redirect str [optional]
request_id str [optional]

Example

from openapi_client.models.merchant_gateway_setup_webhook_post200_response import MerchantGatewaySetupWebhookPost200Response

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

# convert the object into a dict
merchant_gateway_setup_webhook_post200_response_dict = merchant_gateway_setup_webhook_post200_response_instance.to_dict()
# create an instance of MerchantGatewaySetupWebhookPost200Response from a dict
merchant_gateway_setup_webhook_post200_response_form_dict = merchant_gateway_setup_webhook_post200_response.from_dict(merchant_gateway_setup_webhook_post200_response_dict)

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