| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | ||
| access | AiConfigsAccess | [optional] | |
| links | ParentAndSelfLinks | [optional] | |
| maintainer | AIConfigMaintainer | [optional] | |
| name | str | ||
| description | str | [optional] | |
| text | str | The text content of the prompt snippet | |
| tags | List[str] | ||
| version | int | ||
| created_at | int |
from launchdarkly_api.models.prompt_snippet import PromptSnippet
# TODO update the JSON string below
json = "{}"
# create an instance of PromptSnippet from a JSON string
prompt_snippet_instance = PromptSnippet.from_json(json)
# print the JSON string representation of the object
print(PromptSnippet.to_json())
# convert the object into a dict
prompt_snippet_dict = prompt_snippet_instance.to_dict()
# create an instance of PromptSnippet from a dict
prompt_snippet_from_dict = PromptSnippet.from_dict(prompt_snippet_dict)