Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**event_time** | **datetime** | UTC date-time of the event |
**ip** | **str** | IP from which the user has been unsubscribed |
**ip** | **str** | IP from which the user has been unsubscribed | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**campaign_id** | **int** | ID of the campaign which generated the event |
**event_time** | **datetime** | UTC date-time of the event |
**ip** | **str** | IP from which the user has unsubscribed |
**ip** | **str** | IP from which the user has unsubscribed | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "sib-api-v3-sdk"
VERSION = "6.3.0"
VERSION = "6.3.1"
# To install the library, run the following
#
# python setup.py install
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def __init__(self, event_time=None, ip=None): # noqa: E501
self.discriminator = None

self.event_time = event_time
self.ip = ip
if ip is not None:
self.ip = ip

@property
def event_time(self):
Expand Down Expand Up @@ -95,8 +96,6 @@ def ip(self, ip):
:param ip: The ip of this GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription. # noqa: E501
:type: str
"""
if ip is None:
raise ValueError("Invalid value for `ip`, must not be `None`") # noqa: E501

self._ip = ip

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ def __init__(self, campaign_id=None, event_time=None, ip=None): # noqa: E501

self.campaign_id = campaign_id
self.event_time = event_time
self.ip = ip
if ip is not None:
self.ip = ip

@property
def campaign_id(self):
Expand Down Expand Up @@ -124,8 +125,6 @@ def ip(self, ip):
:param ip: The ip of this GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription. # noqa: E501
:type: str
"""
if ip is None:
raise ValueError("Invalid value for `ip`, must not be `None`") # noqa: E501

self._ip = ip

Expand Down