Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

CustomUserResponse.md

File metadata and controls

33 lines (24 loc) · 1.13 KB

CustomUserResponse

A User Object

Properties

Name Type Description Notes
pki_user_id int The unique ID of the User
s_user_lastname str The last name of the user
s_user_firstname str The first name of the user
s_email_address str The email address.

Example

from eZmaxApi.models.custom_user_response import CustomUserResponse

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

# convert the object into a dict
custom_user_response_dict = custom_user_response_instance.to_dict()
# create an instance of CustomUserResponse from a dict
custom_user_response_form_dict = custom_user_response.from_dict(custom_user_response_dict)

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