Alias¶
A list of tags (aliases) for the collection.
Properties¶
Name | Type | Description | Notes |
---|---|---|---|
Example¶
from deepsearch.cps.apis.public_v2.models.alias import Alias
# TODO update the JSON string below
json = "{}"
# create an instance of Alias from a JSON string
alias_instance = Alias.from_json(json)
# print the JSON string representation of the object
print(Alias.to_json())
# convert the object into a dict
alias_dict = alias_instance.to_dict()
# create an instance of Alias from a dict
alias_form_dict = alias.from_dict(alias_dict)