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
fromclientapi_barion.models.payment_finish_reservation_requestimportPaymentFinishReservationRequest# TODO update the JSON string belowjson="{}"# create an instance of PaymentFinishReservationRequest from a JSON stringpayment_finish_reservation_request_instance=PaymentFinishReservationRequest.from_json(json)
# print the JSON string representation of the objectprint(PaymentFinishReservationRequest.to_json())
# convert the object into a dictpayment_finish_reservation_request_dict=payment_finish_reservation_request_instance.to_dict()
# create an instance of PaymentFinishReservationRequest from a dictpayment_finish_reservation_request_from_dict=PaymentFinishReservationRequest.from_dict(payment_finish_reservation_request_dict)