Type Alias ArticleIdentifier

ArticleIdentifier: {
    ean: string;
    manufacturerArticleNumber: string;
} | {
    ean: string;
} | {
    manufacturerArticleNumber: string;
}

Identifies an article by EAN and/or manufacturer article number. At least one of the two identifiers is always present.