1 /** 2 * Action used to set custom user properties. 3 */ 4 export const SET_DYNAMIC_BRANDING_DATA = 'SET_DYNAMIC_BRANDING_DATA'; 5 6 /** 7 * Action used to signal the customization failed. 8 */ 9 export const SET_DYNAMIC_BRANDING_FAILED = 'SET_DYNAMIC_BRANDING_FAILED'; 10 11 /** 12 * Action used to signal the branding elements are ready to be displayed 13 */ 14 export const SET_DYNAMIC_BRANDING_READY = 'SET_DYNAMIC_BRANDING_READY'; 15 16 /** 17 * Action used to unset branding elements 18 */ 19 export const UNSET_DYNAMIC_BRANDING = 'UNSET_DYNAMIC_BRANDING';