PushNotificationRegistrationData23
Bases: OCIType
The common push notification registration elements which supports encryption, if required. Elements encryptionKeyIdentifier, encryptionAlgorithm and channel are provided only when registration supports encryption. Their absence indicates that encryption is not supported.
Attributes:
registration_id (str):
application_id (str):
application_version (str):
device_os_type (str):
device_version (str):
timestamp (str):
push_notification_client_version (str):
push_notification_token_data (Optional[List[PushNotificationTokenData23]]):
encryption_key_identifier (Optional[str]):
encryption_algorithm (Optional[str]):
channel (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 | |