Name | Type | Description | Notes |
---|---|---|---|
id | int | ||
domain | Domain | ||
job | int | ||
team_id | int | ||
member_id | int | ||
change | int | ||
timestamp | datetime |
from compute_api_client.models.transaction import Transaction
# TODO update the JSON string below
json = "{}"
# create an instance of Transaction from a JSON string
transaction_instance = Transaction.from_json(json)
# print the JSON string representation of the object
print Transaction.to_json()
# convert the object into a dict
transaction_dict = transaction_instance.to_dict()
# create an instance of Transaction from a dict
transaction_form_dict = transaction.from_dict(transaction_dict)