package BookPub::Import::Importer::Google::Version8;

use strict;

use Common::Assert;
use Data::Dumper;

use lib '/app/tools/bookpub/lib';
use base 'BookPub::Import::Importer::Google::Version4';

sub _headerIdentifier { ( rTitle => 'Title' ) }

sub _fieldMap {
    {
        currencyCode       => 'J',
        countryCode        => 'L',
        dateBegin          => 'A',
        rIsbn13            => 'F',
        rTitle             => 'H',
        rAuthor            => 'I',
        rImprint           => 'G',
        rUnits             => 'D',
        rListPrice         => 'K',
        rListPriceCurrency => 'J',
        rCOGS              => 'M',
        rRevenue           => 'N',
    };
}

1;
