Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 958 Bytes

File metadata and controls

30 lines (21 loc) · 958 Bytes

UserRecords

Properties

Name Type Description Notes
page_details UserPageDetails [optional]
result List[UsersDetails] [optional]

Example

from boldsign.models.user_records import UserRecords

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

# convert the object into a dict
user_records_dict = user_records_instance.to_dict()
# create an instance of UserRecords from a dict
user_records_from_dict = UserRecords.from_dict(user_records_dict)

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