"""Brand related constants.""" BRAND_ORCHARD = 'theorchard' BRAND_AWAL = 'awal' BRAND_KNR = 'knr' BRAND_SME = 'sme' DEFAULT_BRAND = BRAND_ORCHARD BRANDS = ( BRAND_ORCHARD, BRAND_AWAL, BRAND_KNR, BRAND_SME, ) BRAND_TO_ORGANIZATION = { BRAND_ORCHARD: 'orchard', BRAND_AWAL: BRAND_AWAL, BRAND_KNR: BRAND_KNR, BRAND_SME: BRAND_SME, } BRAND_SENDER_MAP = { BRAND_ORCHARD: '"The Orchard Notifications" ', BRAND_AWAL: '"AWAL Notifications" ', BRAND_KNR: '"Kollective NR Notifications" ', BRAND_SME: '"Sony Music Notifications" ', }