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

package RPS::Import::XboxMusic::Subscription::v5;

use strict;

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

use lib '/app/tools/rps/lib';
use RPS::Import::ServiceMap;

use base 'RPS::Import::XboxMusic::Subscription::v3';

sub _fieldMap {
    {
        labelName        => 'J',
        serviceID        => 'L',
        countryCode      => 'M',
        productType      => 'N',
        formatType       => 'P',
        artistName       => 'C',
        upc              => 'H',
        albumName        => 'F',
        isrc             => 'D',
        trackName        => 'B',
        units            => 'O',
        currencyCode     => 'V',
        price            => 'U',
    }
}


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