Source: app/data/enum/CompetitionEntryTypes.js

/**
 * Informs what type of competition the user has won to change the display of the banner
 */
export const CompetitionEntryTypes = {
  SINGLE: 0,
  COUPLES_PRIMARY_MEMBER: 1,
  COUPLES_SECONDARY_MEMBER: 2,
};

export const CompetitionEntryTypesLocale = {
  [CompetitionEntryTypes.SINGLE]: 'single',
  [CompetitionEntryTypes.COUPLES_PRIMARY_MEMBER]: 'couplesPrimaryMember',
  [CompetitionEntryTypes.COUPLES_SECONDARY_MEMBER]: 'couplesSecondaryMember',
};