UNPKG

@5stones/onix

Version:

A strongly typed library for parsing ONIX feeds.

18 lines (16 loc) 645 B
import { CollateralDetail } from './CollateralDetail'; import { DescriptiveDetail } from './DescriptiveDetail'; import { ProductIdentifier } from './ProductIdentifier'; import { ProductSupply } from './ProductSupply'; import { PublishingDetail } from './PublishingDetail'; import { RelatedMaterial } from './RelatedMaterial'; export interface Product { RecordReference?: string; NotificationType?: string; ProductIdentifier?: ProductIdentifier[]; DescriptiveDetail?: DescriptiveDetail; CollateralDetail?: CollateralDetail; PublishingDetail?: PublishingDetail; RelatedMaterial?: RelatedMaterial; ProductSupply?: ProductSupply; }