package RPS::Import::Sony::v43;

use strict;
use warnings;

use parent 'RPS::Import::Sony::v42';

sub physical { 2 }

sub _fieldMapExtended {
    {
        mixed => {
            option1 => {
                serviceID    => 'O',
                countryCode  => 'J',
                artistName   => 'F',
                upc          => 'D',
                albumName    => 'E',
                trackName    => 'E',
                units        => 'AD',
                priceLevel   => 'P',
                currencyCode => 'A5',
                totalRevenue => 'AF',
                price        => 'AF',
                mediaType    => 'K',
            },
         },
    };
}

sub _unverifiedFieldMapExtended {
    {
        mixed => {
            option1 => {
                _period              => 'AG',
                _productTypePhys     => 'K',
                _productTypeDig      => 'L',
                _distributionManner  => 'M',
                _distributionChannel => 'N',
                _netUnits            => 'AD',
            }
        }
    }
};

sub _headerIdentifierExtended {
    {
        mixed => {
            option1 => {
                upc => 'Product Number',
            },
        },
    };
}


1;