cic-internal-integration/apps/cic-ussd/cic_ussd/metadata/phone.py

15 lines
333 B
Python
Raw Normal View History

# standard imports
import logging
# external imports
2021-10-15 13:21:41 +02:00
from cic_types.condiments import MetadataPointer
# local imports
2021-10-15 13:21:41 +02:00
from .base import UssdMetadataHandler
2021-10-15 13:21:41 +02:00
class PhonePointerMetadata(UssdMetadataHandler):
2021-04-14 11:00:10 +02:00
def __init__(self, identifier: bytes):
2021-10-15 13:21:41 +02:00
super().__init__(cic_type=MetadataPointer.PHONE, identifier=identifier)