Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 855 Bytes

File metadata and controls

29 lines (20 loc) · 855 Bytes

ConfigMapRef

Properties

Name Type Description Notes
name str

Example

from halo_client.models.config_map_ref import ConfigMapRef

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

# convert the object into a dict
config_map_ref_dict = config_map_ref_instance.to_dict()
# create an instance of ConfigMapRef from a dict
config_map_ref_from_dict = ConfigMapRef.from_dict(config_map_ref_dict)

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