package RPS::Import::Musiwave::v16;

use strict;

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

use lib '/app/tools/rps/lib';
use base 'RPS::Import::Musiwave::Digital';

use Data::Dumper;

sub _fieldMap {
    {
        labelName    => 'H',
        serviceID    => 'J',
        countryCode  => 'K',
        productType  => 'M',
        formatType   => 'Q',
        upc          => 'G',
        artistName   => 'C',
        isrc         => 'D',
        units        => 'P',
        currencyCode => 'L',
        price        => 'R',
        mediaType    => 'M',
    };
}

sub _unverifiedFieldMap {
    {
        productTitle => 'B',
        parentTitle  => 'E',
    };
}

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