package BookPub::Import::Importer::Google::Version7;

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       => 'K',
        countryCode        => 'M',
        dateBegin          => 'B',
        rIsbn13            => 'G',
        rTitle             => 'I',
        rAuthor            => 'J',
        rImprint           => 'H',
        rUnits             => 'E',
        rListPrice         => 'L',
        rListPriceCurrency => 'K',
        rCOGS              => 'N',
        rRevenue           => 'O',
    };
}

1;
