Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/DefaultApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ with onesignal.ApiClient(configuration) as api_client:
type="iOSPush",
token="token_example",
enabled=True,
notification_types=3.14,
notification_types=1,
session_time=3.14,
session_count=3.14,
sdk="sdk_example",
Expand Down Expand Up @@ -659,7 +659,7 @@ with onesignal.ApiClient(configuration) as api_client:
type="iOSPush",
token="token_example",
enabled=True,
notification_types=3.14,
notification_types=1,
session_time=3.14,
session_count=3.14,
sdk="sdk_example",
Expand Down Expand Up @@ -2722,7 +2722,7 @@ with onesignal.ApiClient(configuration) as api_client:
type="iOSPush",
token="token_example",
enabled=True,
notification_types=3.14,
notification_types=1,
session_time=3.14,
session_count=3.14,
sdk="sdk_example",
Expand Down
2 changes: 1 addition & 1 deletion docs/SubscriptionObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Name | Type | Description | Notes
**type** | **str** | | [optional]
**token** | **str** | | [optional]
**enabled** | **bool** | | [optional]
**notification_types** | **float** | | [optional]
**notification_types** | **int** | | [optional]
**session_time** | **float** | | [optional]
**session_count** | **float** | | [optional]
**sdk** | **str** | | [optional]
Expand Down
6 changes: 3 additions & 3 deletions onesignal/model/subscription_object.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def openapi_types():
'type': (str,), # noqa: E501
'token': (str,), # noqa: E501
'enabled': (bool,), # noqa: E501
'notification_types': (float,), # noqa: E501
'notification_types': (int,), # noqa: E501
'session_time': (float,), # noqa: E501
'session_count': (float,), # noqa: E501
'sdk': (str,), # noqa: E501
Expand Down Expand Up @@ -186,7 +186,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
type (str): [optional] # noqa: E501
token (str): [optional] # noqa: E501
enabled (bool): [optional] # noqa: E501
notification_types (float): [optional] # noqa: E501
notification_types (int): [optional] # noqa: E501
session_time (float): [optional] # noqa: E501
session_count (float): [optional] # noqa: E501
sdk (str): [optional] # noqa: E501
Expand Down Expand Up @@ -288,7 +288,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
type (str): [optional] # noqa: E501
token (str): [optional] # noqa: E501
enabled (bool): [optional] # noqa: E501
notification_types (float): [optional] # noqa: E501
notification_types (int): [optional] # noqa: E501
session_time (float): [optional] # noqa: E501
session_count (float): [optional] # noqa: E501
sdk (str): [optional] # noqa: E501
Expand Down