Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.58 KB

PaymentMethod.md

File metadata and controls

38 lines (29 loc) · 1.58 KB

PaymentMethod

Properties

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]

Example

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)

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