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
Agreement number, you can use this number to pay in the store/bbva
[optional]
provider
str
Provider name, you can use this to know where to pay
[optional]
Example
fromconekta.models.payment_method_cash_response_all_of_agreementsimportPaymentMethodCashResponseAllOfAgreements# TODO update the JSON string belowjson="{}"# create an instance of PaymentMethodCashResponseAllOfAgreements from a JSON stringpayment_method_cash_response_all_of_agreements_instance=PaymentMethodCashResponseAllOfAgreements.from_json(json)
# print the JSON string representation of the objectprint(PaymentMethodCashResponseAllOfAgreements.to_json())
# convert the object into a dictpayment_method_cash_response_all_of_agreements_dict=payment_method_cash_response_all_of_agreements_instance.to_dict()
# create an instance of PaymentMethodCashResponseAllOfAgreements from a dictpayment_method_cash_response_all_of_agreements_from_dict=PaymentMethodCashResponseAllOfAgreements.from_dict(payment_method_cash_response_all_of_agreements_dict)