| Name | Type | Description | Notes |
|---|---|---|---|
| data | PaymentInitiateFields | [optional] | |
| message | str | [optional] | |
| status | bool | [optional] |
from hyperstack.models.payment_initiate_response import PaymentInitiateResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentInitiateResponse from a JSON string
payment_initiate_response_instance = PaymentInitiateResponse.from_json(json)
# print the JSON string representation of the object
print(PaymentInitiateResponse.to_json())
# convert the object into a dict
payment_initiate_response_dict = payment_initiate_response_instance.to_dict()
# create an instance of PaymentInitiateResponse from a dict
payment_initiate_response_from_dict = PaymentInitiateResponse.from_dict(payment_initiate_response_dict)