Skip to content

PushNotificationTokenData23

Bases: OCIType

The common push notification token elements.

Attributes:

push_notification_token (str):

push_notification_type (str):

push_notification_event_data (Optional[List[PushNotificationEventData23]]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class PushNotificationTokenData23(OCIType):
    """The common push notification token elements.

    Attributes:

        push_notification_token (str):

        push_notification_type (str):

        push_notification_event_data (Optional[List[PushNotificationEventData23]]):

    """

    push_notification_token: str = field(metadata={"alias": "pushNotificationToken"})

    push_notification_type: str = field(metadata={"alias": "pushNotificationType"})

    push_notification_event_data: Optional[List[PushNotificationEventData23]] = field(
        default=None, metadata={"alias": "pushNotificationEventData"}
    )