Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

AutocompleteBill.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

AutocompleteBill

Properties

Name Type Description Notes
active bool Is the bill active or not? [optional]
id str
name str Name of the bill found by an auto-complete search.

Example

from firefly_iii_client.models.autocomplete_bill import AutocompleteBill

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

# convert the object into a dict
autocomplete_bill_dict = autocomplete_bill_instance.to_dict()
# create an instance of AutocompleteBill from a dict
autocomplete_bill_form_dict = autocomplete_bill.from_dict(autocomplete_bill_dict)

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