Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.31 KB

File metadata and controls

35 lines (27 loc) · 1.31 KB

FireBaseUser

The Firebase user parameters.

Properties

Name Type Description Notes
id int The Firebase user ID. [optional]
user_id str The user ID. [optional]
tenant_id int The tenant ID. [optional]
firebase_device_token str The Firebase device token. [optional]
application str The Firebase application. [optional]
is_subscribed bool Specifies if the user is subscribed to the push notifications or not. [optional]
tenant DbTenant [optional]

Example

from docspace_api_sdk.models.fire_base_user import FireBaseUser

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

# convert the object into a dict
fire_base_user_dict = fire_base_user_instance.to_dict()
# create an instance of FireBaseUser from a dict
fire_base_user_from_dict = FireBaseUser.from_dict(fire_base_user_dict)

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