The Firebase user parameters.
| 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] |
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)