export const STORE_KEY = 'wc/store/payment';
export enum STATUS {
PRISTINE = 'pristine',
STARTED = 'started',
PROCESSING = 'processing',
ERROR = 'has_error',
FAILED = 'failed',
SUCCESS = 'success',
}