Name | Type | Description | Notes |
---|---|---|---|
id | int | Payment method id | [optional] |
name | str | Payment method name | [optional] |
type | PaymentMethodType | [optional] [default to PaymentMethodType.STANDARD] | |
is_default | bool | Payment method is default | [optional] |
default_payment_account | PaymentAccount | [optional] | |
details | List[PaymentMethodDetails] | Payment method details | [optional] |
bank_iban | str | Payment method bank iban | [optional] |
bank_name | str | Payment method bank name | [optional] |
bank_beneficiary | str | Payment method bank beneficiary | [optional] |
ei_payment_method | str | E-invoice payment method | [optional] |
from fattureincloud_python_sdk.models.payment_method import PaymentMethod
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentMethod from a JSON string
payment_method_instance = PaymentMethod.from_json(json)
# print the JSON string representation of the object
print(PaymentMethod.to_json())
# convert the object into a dict
payment_method_dict = payment_method_instance.to_dict()
# create an instance of PaymentMethod from a dict
payment_method_from_dict = PaymentMethod.from_dict(payment_method_dict)