An Userlogintype Object
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_userlogintype_id | int | The unique ID of the Userlogintype Valid values: | Value |
| obj_userlogintype_description | MultilingualUserlogintypeDescription | ||
| s_userlogintype_description_x | str | The description of the Userlogintype in the language of the requester |
from eZmaxApi.models.userlogintype_response import UserlogintypeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UserlogintypeResponse from a JSON string
userlogintype_response_instance = UserlogintypeResponse.from_json(json)
# print the JSON string representation of the object
print(UserlogintypeResponse.to_json())
# convert the object into a dict
userlogintype_response_dict = userlogintype_response_instance.to_dict()
# create an instance of UserlogintypeResponse from a dict
userlogintype_response_from_dict = UserlogintypeResponse.from_dict(userlogintype_response_dict)