mirror of
https://github.com/pyro2927/SouthwestCheckin.git
synced 2026-01-06 01:33:14 +00:00
9 lines
239 B
Python
9 lines
239 B
Python
class Notifications:
|
|
@staticmethod
|
|
def Phone(number):
|
|
return {'mediaType': 'SMS', 'phoneNumber': number}
|
|
|
|
@staticmethod
|
|
def Email(email_address):
|
|
return {'mediaType': 'EMAIL', 'emailAddress': email_address}
|