package RPS::Import::Bandcamp::v38;

use strict;
use warnings;

use parent 'RPS::Import::Bandcamp::v34';

sub _fieldMapExtended {
    {
        mixed => {
            option1 => {
                countryCode     => 'AK',
                dateBegin       => 'A',
                dateEnd         => 'A',
                formatType      => 'AC',
                clientProductID => 'AF',
                artistName      => 'E',
                upc             => 'AG',
                albumName       => 'D',
                isrc            => 'AH',
                trackName       => 'D',
                units           => 'H',
                currencyCode    => 'F',
                retailPrice     => 'G',
                totalRevenue    => 'AB',
                price           => 'AB',
                mediaType       => 'C',
            },
        },
    };
}

sub _unverifiedFieldMapExtended {
    {
        mixed => {
            option1 => {
                _productTypePhys => 'AC',
                _productTypeDig  => 'C',
                _netUnits        => 'H',
                _ship_from       => 'P',
            },
        }
    };
}

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


1;
