Skip to content

OptionalSampleTags

Properties

Name Type Description Notes
technical_tags List[Optional[str]] [optional]
user_tags List[Optional[str]] [optional]
connector_tags List[Optional[str]] [optional]
run_in_tags List[Optional[str]] [optional]

Example

from libica.openapi.v3.models.optional_sample_tags import OptionalSampleTags

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

# convert the object into a dict
optional_sample_tags_dict = optional_sample_tags_instance.to_dict()
# create an instance of OptionalSampleTags from a dict
optional_sample_tags_from_dict = OptionalSampleTags.from_dict(optional_sample_tags_dict)

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