Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
39 lines (31 loc) · 1.4 KB

File metadata and controls

39 lines (31 loc) · 1.4 KB

PseudoTransactionJob

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
sort_order int [optional]
entity_type str [optional]
entity_id str [optional]
action str [optional]
input_data object [optional]
created_by_id str [optional]
created_by_name str [optional]
parent_id str [optional]
parent_name str [optional]
md5 str [optional]

Example

from clientapi_atrocore.models.pseudo_transaction_job import PseudoTransactionJob

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

# convert the object into a dict
pseudo_transaction_job_dict = pseudo_transaction_job_instance.to_dict()
# create an instance of PseudoTransactionJob from a dict
pseudo_transaction_job_form_dict = pseudo_transaction_job.from_dict(pseudo_transaction_job_dict)

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