Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

SingleVisibilityUserResponse

Properties

Name Type Description Notes
id int
user_id int
stock_visible bool

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_form_dict = single_visibility_user_response.from_dict(single_visibility_user_response_dict)

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