Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 1.9 KB

File metadata and controls

53 lines (44 loc) · 1.9 KB

LedgerEntry

Properties

Name Type Description Notes
register_id str
register_type ApplicableTerminals
transaction_id str
transaction_type LedgerEntryTransactionType
check_amount float
transaction_amount float
check_balance float
discount_received str
payment_object_prefix str
payment_object_id str
parent_object_prefix str
parent_object_id LedgerEntryParentObjectID
meta_value str
id WTWalletPageViewId
merchant_id str
created_at datetime
updated_at datetime
is_active bool
refunded_ledger_entry_id str [optional]
transaction_amount_decimal str
transaction_amount_string str
check_amount_decimal str
check_amount_string str
check_balance_decimal str
check_balance_string str

Example

from wallet.models.ledger_entry import LedgerEntry

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

# convert the object into a dict
ledger_entry_dict = ledger_entry_instance.to_dict()
# create an instance of LedgerEntry from a dict
ledger_entry_form_dict = ledger_entry.from_dict(ledger_entry_dict)

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