package BookPub::Import::Importer::Amazon::Version63;

use strict;

use lib '/app/tools/bookpub/lib';
use base 'BookPub::Import::Importer::Amazon::Version53';

sub _fieldMap {
    {
        serviceProductID       => 'B',
        currencyCode           => 'W',
        countryCode            => 'X',
        dateBegin              => 'A',
        rFormat                => 'I',
        isbn                   => 'E',
        rTitle                 => 'F',
        rAuthor                => 'G',
        rImprint               => 'H',
        rUnits                 => 'L',
        rSales                 => 'J',
        rReturns               => 'K',
        rAdjustments           => 'N',
        rListPrice             => 'S',
        rListPriceCurrency     => 'T',
        rPurchasePrice         => 'Q',
        rPurchasePriceCurrency => 'R',
        rTaxAmount             => 'O',
        rDiscount              => 'U',
        rRevenue               => 'V',
        rModel                 => 'Y'
    };
}

sub _unverifiedFieldMap {
    { taxCurrency => 'P', };
}

1;
