Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 2.55 KB

Bill.md

File metadata and controls

52 lines (43 loc) · 2.55 KB

Bill

Properties

Name Type Description Notes
active bool If the bill is active. [optional]
amount_max str
amount_min str
created_at datetime [optional] [readonly]
currency_code str Use either currency_id or currency_code [optional]
currency_decimal_places int [optional] [readonly]
currency_id str Use either currency_id or currency_code [optional]
currency_symbol str [optional] [readonly]
var_date datetime
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
next_expected_match datetime When the bill is expected to be due. [optional] [readonly]
next_expected_match_diff str Formatted (locally) when the bill is due. [optional] [readonly]
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_order int The order of the group. At least 1, for the highest sorting. [optional] [readonly]
object_group_title str The name of the group. NULL if no group. [optional]
order int Order of the bill. [optional]
paid_dates List[BillPaidDatesInner] Array of past transactions when the bill was paid. [optional] [readonly]
pay_dates List[datetime] Array of future dates when the bill is expected to be paid. Autogenerated. [optional] [readonly]
repeat_freq BillRepeatFrequency
skip int How often the bill must be skipped. 1 means a bi-monthly bill. [optional]
updated_at datetime [optional] [readonly]

Example

from firefly_iii_client.models.bill import Bill

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

# convert the object into a dict
bill_dict = bill_instance.to_dict()
# create an instance of Bill from a dict
bill_form_dict = bill.from_dict(bill_dict)

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