1
0
mirror of https://github.com/pyro2927/SouthwestCheckin.git synced 2026-01-06 01:33:14 +00:00
Files
SouthwestCheckin/southwest/notifications.py
2019-02-17 23:29:40 -08:00

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}