Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 985 Bytes

ProducersConfigPart.md

File metadata and controls

29 lines (20 loc) · 985 Bytes

ProducersConfigPart

Properties

Name Type Description Notes
producers List[Producer] [optional]

Example

from akeyless.models.producers_config_part import ProducersConfigPart

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

# convert the object into a dict
producers_config_part_dict = producers_config_part_instance.to_dict()
# create an instance of ProducersConfigPart from a dict
producers_config_part_from_dict = ProducersConfigPart.from_dict(producers_config_part_dict)

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