package RPS::Import::Yandex::v3;

use strict;
use warnings;

use lib '/app/tools/rps/lib';

use base 'RPS::Import::Yandex::v1';

sub physical { 2 }

sub _fieldMapExtended {
    {
        digital => {
            option1 => {
                labelName    => 'E',
                serviceID    => 'A',
                countryCode  => 'M',
                dateBegin    => 'B',
                dateEnd      => 'C',
                productType  => 'K',
                formatType   => 'O',
                artistName   => 'H',
                upc          => 'J',
                albumName    => 'G',
                isrc         => 'K',
                trackName    => 'I',
                units        => 'P',
                price        => 'R',
                currencyCode => 'R',
            },
         },
    };
}

sub _unverifiedFieldMapExtended { {} }

sub _headerIdentifierExtended {
    {
        digital => {
            option1 => {
                upc => 'Release_ID',
            },
        },
    };
}

1;
