ExternalDocumentation allows referencing an external resource for extended documentation.
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| url | str | [optional] |
from kubernetes.client.models.v1_external_documentation import V1ExternalDocumentation
# TODO update the JSON string below
json = "{}"
# create an instance of V1ExternalDocumentation from a JSON string
v1_external_documentation_instance = V1ExternalDocumentation.from_json(json)
# print the JSON string representation of the object
print(V1ExternalDocumentation.to_json())
# convert the object into a dict
v1_external_documentation_dict = v1_external_documentation_instance.to_dict()
# create an instance of V1ExternalDocumentation from a dict
v1_external_documentation_from_dict = V1ExternalDocumentation.from_dict(v1_external_documentation_dict)