Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

UpdateRabbitMQTargetOutput.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

UpdateRabbitMQTargetOutput

Properties

Name Type Description Notes
target_id int [optional]

Example

from akeyless.models.update_rabbit_mq_target_output import UpdateRabbitMQTargetOutput

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

# convert the object into a dict
update_rabbit_mq_target_output_dict = update_rabbit_mq_target_output_instance.to_dict()
# create an instance of UpdateRabbitMQTargetOutput from a dict
update_rabbit_mq_target_output_from_dict = UpdateRabbitMQTargetOutput.from_dict(update_rabbit_mq_target_output_dict)

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