Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 972 Bytes

File metadata and controls

31 lines (22 loc) · 972 Bytes

ConfigFileMount

Properties

Name Type Description Notes
filename str
mount_path str
content str

Example

from platform_api_python_client.models.config_file_mount import ConfigFileMount

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

# convert the object into a dict
config_file_mount_dict = config_file_mount_instance.to_dict()
# create an instance of ConfigFileMount from a dict
config_file_mount_from_dict = ConfigFileMount.from_dict(config_file_mount_dict)

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