Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.85 KB

TrialBalance.md

File metadata and controls

39 lines (31 loc) · 1.85 KB

TrialBalance

A TrialBalance entity.

Properties

Name Type Description Notes
general_ledger_account_code str The Account code that the trial balance results have been grouped against.
description str The description of the record. [optional]
levels List[str] The levels that have been derived from the specified General Ledger Profile.
account_type str The account type attributed to the record.
local_currency str The local currency for the amounts specified. Defaults to base currency if multiple different currencies present in the grouped line.
opening MultiCurrencyAmounts
closing MultiCurrencyAmounts
debit MultiCurrencyAmounts
credit MultiCurrencyAmounts
properties Dict[str, ModelProperty] Properties found on the mapped 'Account', as specified in request. [optional]
links List[Link] [optional]

Example

from lusid.models.trial_balance import TrialBalance

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

# convert the object into a dict
trial_balance_dict = trial_balance_instance.to_dict()
# create an instance of TrialBalance from a dict
trial_balance_form_dict = trial_balance.from_dict(trial_balance_dict)

Back to Model listBack to API listBack to README