@5stones/onix
Version:
A strongly typed library for parsing ONIX feeds.
8 lines (6 loc) • 319 B
text/typescript
import { ResourceVersionFeatureType } from "../enums/ResourceVersionFeatureType";
import { SupportingResourceFileFormat } from "../enums/SupportingResourceFileFormat";
export interface ResourceVersionFeature {
ResourceVersionFeatureType?: ResourceVersionFeatureType;
FeatureValue?: SupportingResourceFileFormat;
}