package BookPub::Import::Importer::Blinkist::v3;

use strict;
use warnings;

use POSIX;

use lib '/app/tools/common/lib';
use Date::Calc qw(Days_in_Month);

use lib '/app/tools/bookpub/lib';
use base 'BookPub::Import::Importer::Blinkist::v2';


sub _fieldMap {
    {
        dateBegin          => 'C',
        dateEnd            => 'C',
        rAuthor            => 'H',
        rTitle             => 'G',
        rIsbn13            => 'F',
        countryCode        => 'L',
        rUnits             => 'T',
        rListPrice         => 'K',
        rListPriceCurrency => 'D',
        rRevenue           => 'U',
        currencyCode       => 'D',
        rTaxAmount         => 'M',
    };
}

sub _headerIdentifier { rIsbn13 => 'ISBN' }


1;
