associatorGiftInitialState.js 643 Bytes
'use strict';

import {Record, List, Map} from 'immutable';

let InitialState = Record({
	showGiftAlert: false,

    couponsBagCnt: new (Record({
        isFetching: false,
        error: null,
        total: 0,
    })),

    couponsBag: new (Record({
        isFetching: false,
        error: null,
        couponsBag_list: List(),
    })),

    productList: new (Record({
        isFetching: false,
        error: null,
        product_list: List(),
        rec_id:'',
    })),

    drawCouponsBag: new (Record({
        isFetching: false,
        error: null,
        drawCouponsBag_list: List(),
    })),
});

export default InitialState;