Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

PaymentGetPostPricingResponse

Properties

Name Type Description Notes
renew GetPostPricingResponseRenew [optional]
reorder GetPostPricingResponseReorder [optional]
submit GetPostPricingResponseSubmit [optional]

Example

from kenar_api_client.models.payment_get_post_pricing_response import PaymentGetPostPricingResponse

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

# convert the object into a dict
payment_get_post_pricing_response_dict = payment_get_post_pricing_response_instance.to_dict()
# create an instance of PaymentGetPostPricingResponse from a dict
payment_get_post_pricing_response_from_dict = PaymentGetPostPricingResponse.from_dict(payment_get_post_pricing_response_dict)

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