Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

GatewayUpdateLogForwardingOutput.md

File metadata and controls

29 lines (20 loc) · 1.11 KB

GatewayUpdateLogForwardingOutput

Properties

Name Type Description Notes
updated bool [optional]

Example

from akeyless.models.gateway_update_log_forwarding_output import GatewayUpdateLogForwardingOutput

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

# convert the object into a dict
gateway_update_log_forwarding_output_dict = gateway_update_log_forwarding_output_instance.to_dict()
# create an instance of GatewayUpdateLogForwardingOutput from a dict
gateway_update_log_forwarding_output_from_dict = GatewayUpdateLogForwardingOutput.from_dict(gateway_update_log_forwarding_output_dict)

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