Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.29 KB

File metadata and controls

38 lines (29 loc) · 1.29 KB

PromptSnippet

Properties

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

Example

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)

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