package RPS::Import::BMG::v5;

use strict;
use warnings;

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

use parent 'RPS::Import::BMG::v4';

sub physical { 2 }

sub _fieldMapExtended {
    {
        digital => {
            option1 => {
                serviceID      => 'L',
                countryCode    => 'H',
                dateBegin      => 'J',
                dateEnd        => 'J',
                productType    => 'P',
                formatType     => 'N',
                artistName     => 'G',
                isrc           => 'E',
                trackName      => 'F',
                units          => 'AA',
                currencyCode   => 'AC',
                price          => 'AB',
                totalRevenue   => 'AB',
                mediaType      => 'N',
            },
         },
    };
}


1;
