#---------------------------------------------------------------
# ____                   _ _         ____  _
#|  _ \ ___  _   _  __ _| | |_ _   _/ ___|| |__   __ _ _ __ ___
#| |_) / _ \| | | |/ _` | | __| | | \___ \| '_ \ / _` | '__/ _ \
#|  _ < (_) | |_| | (_| | | |_| |_| |___) | | | | (_| | | |  __/
#|_| \_\___/ \__, |\__,_|_|\__|\__, |____/|_| |_|\__,_|_|  \___|
#            |___/             |___/
#
# Copyright (C) 2014 RoyaltyShare, Inc.   All Rights Reserved
#---------------------------------------------------------------

package RPS::Import::Spotify::v6;

use strict;

use lib '/app/tools/common/lib';
use Common::Assert;

use lib '/app/tools/rps/lib';
use base 'RPS::Import::Spotify::v5';

sub _fieldMap {
    {
        #header
        dateBegin => 'B',
        dateEnd   => 'C',

        #detail
        countryCode => 'A',
        labelName   => 'L',
        formatType  => 'B',
        upc         => 'D',
        isrc        => 'F',
        trackName   => 'G',
        artistName  => 'H',
        albumName   => 'J',
        units       => 'K',
        price       => 'N',    # only difference between v6 and v5
    };
}

###
1;                             # Play nicely.
###
