Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

SingleVisibilityUserResponse.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

SingleVisibilityUserResponse

Properties

Name Type Description Notes
id int
stock_visible bool
user_id int

Example

from hyperstack.models.single_visibility_user_response import SingleVisibilityUserResponse

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

# convert the object into a dict
single_visibility_user_response_dict = single_visibility_user_response_instance.to_dict()
# create an instance of SingleVisibilityUserResponse from a dict
single_visibility_user_response_from_dict = SingleVisibilityUserResponse.from_dict(single_visibility_user_response_dict)

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