Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.34 KB

File metadata and controls

33 lines (25 loc) · 1.34 KB

UserWriteMask

Mask for user fields to update.

Properties

Name Type Description Notes
full_name bool Specifies whether to update the full name of the user. [optional]
show_tutorial bool Specifies whether to update the tutorial status of the user. [optional]
role bool Specifies whether to update the role of the user. [optional]
org_role bool Specifies whether to update the organization role of the user. [optional]
private_info bool Specifies whether to update the private fields of the user. [optional]

Example

from ri.apiclient.models.user_write_mask import UserWriteMask

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

# convert the object into a dict
user_write_mask_dict = user_write_mask_instance.to_dict()
# create an instance of UserWriteMask from a dict
user_write_mask_from_dict = UserWriteMask.from_dict(user_write_mask_dict)

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