:param track_start: The track_start of this PlayLog. # noqa: E501
...
...
@@ -41,6 +41,8 @@ class PlayLog(Model):
:type show_name: str
:param log_source: The log_source of this PlayLog. # noqa: E501
:type log_source: int
:param is_synced: The is_synced of this PlayLog. # noqa: E501
:type is_synced: bool
"""
self.swagger_types={
'track_start':datetime,
...
...
@@ -54,7 +56,8 @@ class PlayLog(Model):
'schedule_id':int,
'show_id':int,
'show_name':str,
'log_source':int
'log_source':int,
'is_synced':bool
}
self.attribute_map={
...
...
@@ -69,7 +72,8 @@ class PlayLog(Model):
'schedule_id':'schedule_id',
'show_id':'show_id',
'show_name':'show_name',
'log_source':'log_source'
'log_source':'log_source',
'is_synced':'is_synced'
}
self._track_start=track_start
self._track_artist=track_artist
...
...
@@ -83,6 +87,7 @@ class PlayLog(Model):
self._show_id=show_id
self._show_name=show_name
self._log_source=log_source
self._is_synced=is_synced
@classmethod
deffrom_dict(cls,dikt):
...
...
@@ -352,3 +357,26 @@ class PlayLog(Model):
"""
self._log_source=log_source
@property
defis_synced(self):
"""Gets the is_synced of this PlayLog.
For Engine API internal use only - On a main node such as Engine 1 or 2 this flag indicates if the playlog has been actively synced to the sync node. On the sync node in contrast this flag indicates if the playlog has been passively synced from one of the main nodes. # noqa: E501
:return: The is_synced of this PlayLog.
:rtype: bool
"""
returnself._is_synced
@is_synced.setter
defis_synced(self,is_synced):
"""Sets the is_synced of this PlayLog.
For Engine API internal use only - On a main node such as Engine 1 or 2 this flag indicates if the playlog has been actively synced to the sync node. On the sync node in contrast this flag indicates if the playlog has been passively synced from one of the main nodes. # noqa: E501