Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.79 KB

BillUpdate.md

File metadata and controls

42 lines (33 loc) · 1.79 KB

BillUpdate

Properties

Name Type Description Notes
active bool If the bill is active. [optional]
amount_max str [optional]
amount_min str [optional]
currency_code str Use either currency_id or currency_code [optional]
currency_id str Use either currency_id or currency_code [optional]
var_date datetime [optional]
end_date datetime The date after which this bill is no longer valid or applicable [optional]
extension_date datetime The date before which the bill must be renewed (or cancelled) [optional]
name str
notes str [optional]
object_group_id str The group ID of the group this object is part of. NULL if no group. [optional]
object_group_title str The name of the group. NULL if no group. [optional]
repeat_freq BillRepeatFrequency [optional]
skip int How often the bill must be skipped. 1 means a bi-monthly bill. [optional]

Example

from firefly_iii_client.models.bill_update import BillUpdate

# TODO update the JSON string below
json = "{}"
# create an instance of BillUpdate from a JSON string
bill_update_instance = BillUpdate.from_json(json)
# print the JSON string representation of the object
print(BillUpdate.to_json())

# convert the object into a dict
bill_update_dict = bill_update_instance.to_dict()
# create an instance of BillUpdate from a dict
bill_update_form_dict = bill_update.from_dict(bill_update_dict)

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