Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

TransactionApplicationResponse

Transactional creation response

Properties

Name Type Description Notes
applied bool
logs List[str]

Example

from authentik_client.models.transaction_application_response import TransactionApplicationResponse

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

# convert the object into a dict
transaction_application_response_dict = transaction_application_response_instance.to_dict()
# create an instance of TransactionApplicationResponse from a dict
transaction_application_response_from_dict = TransactionApplicationResponse.from_dict(transaction_application_response_dict)

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