Wrapper for an array of strings.
| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[str] | The array of strings. | [optional] |
frompermify_async.models.string_array_valueimportStringArrayValue# TODO update the JSON string belowjson="{}"# create an instance of StringArrayValue from a JSON stringstring_array_value_instance=StringArrayValue.from_json(json)
# print the JSON string representation of the objectprint(StringArrayValue.to_json())
# convert the object into a dictstring_array_value_dict=string_array_value_instance.to_dict()
# create an instance of StringArrayValue from a dictstring_array_value_from_dict=StringArrayValue.from_dict(string_array_value_dict)