| Name | Type | Description | Notes |
|---|---|---|---|
| name | str |
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)