| Name | Type | Description | Notes |
|---|---|---|---|
| status | bool | [optional] | |
| message | str | [optional] | |
| data | AuthRequestLoginFields | [optional] |
from hyperstack.models.auth_request_login_response_model import AuthRequestLoginResponseModel
# TODO update the JSON string below
json = "{}"
# create an instance of AuthRequestLoginResponseModel from a JSON string
auth_request_login_response_model_instance = AuthRequestLoginResponseModel.from_json(json)
# print the JSON string representation of the object
print(AuthRequestLoginResponseModel.to_json())
# convert the object into a dict
auth_request_login_response_model_dict = auth_request_login_response_model_instance.to_dict()
# create an instance of AuthRequestLoginResponseModel from a dict
auth_request_login_response_model_form_dict = auth_request_login_response_model.from_dict(auth_request_login_response_model_dict)