Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

GetUserPushSubscriptions2XXResponse

Properties

Name Type Description Notes
endpoint str [optional]
p256dh str [optional]
auth str [optional]
user_agent str [optional]

Example

from seerr.models.get_user_push_subscriptions2_xx_response import GetUserPushSubscriptions2XXResponse

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

# convert the object into a dict
get_user_push_subscriptions2_xx_response_dict = get_user_push_subscriptions2_xx_response_instance.to_dict()
# create an instance of GetUserPushSubscriptions2XXResponse from a dict
get_user_push_subscriptions2_xx_response_from_dict = GetUserPushSubscriptions2XXResponse.from_dict(get_user_push_subscriptions2_xx_response_dict)

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