Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

ResponseStopShareItem.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

ResponseStopShareItem

Properties

Name Type Description Notes
errors List[EmailError] [optional]
item_name str [optional]

Example

from akeyless.models.response_stop_share_item import ResponseStopShareItem

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

# convert the object into a dict
response_stop_share_item_dict = response_stop_share_item_instance.to_dict()
# create an instance of ResponseStopShareItem from a dict
response_stop_share_item_from_dict = ResponseStopShareItem.from_dict(response_stop_share_item_dict)

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