| Name |
Type |
Description |
Notes |
| response |
str |
Always `authenticated` on HTTP 200. |
[optional] |
| user_id |
int |
The authenticated user ID. |
[optional] |
| employee_id |
int |
The employee ID linked to this user. Rendered as `<employeeId isNull="yes"/>` when no employee record is associated. |
[optional] |
| key |
str |
The API key to use for subsequent requests. |
[optional] |
| api_url |
str |
The base URL for subsequent API calls. |
[optional] |
from bamboohr_sdk.models.login_xml_response import LoginXmlResponse
# TODO update the JSON string below
json = "{}"
# create an instance of LoginXmlResponse from a JSON string
login_xml_response_instance = LoginXmlResponse.from_json(json)
# print the JSON string representation of the object
print(LoginXmlResponse.to_json())
# convert the object into a dict
login_xml_response_dict = login_xml_response_instance.to_dict()
# create an instance of LoginXmlResponse from a dict
login_xml_response_from_dict = LoginXmlResponse.from_dict(login_xml_response_dict)
[Back to Model list] [Back to API list] [Back to README]