Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* generated using openapi-typescript-codegen -- do not edit */
- /* istanbul ignore file */
- /* tslint:disable */
- /* eslint-disable */
- import type { Section } from './Section';
- export type Substance = {
- chemicalFormula?: string;
- eNumber?: string;
- general?: Array<Section>;
- gn?: string;
- hazardsPictograms?: Array<string>;
- health?: Array<Section>;
- highlight?: string;
- id?: number;
- imageId?: string;
- leadName?: string;
- name?: Array<string>;
- regulations?: Array<Section>;
- un?: string;
- };
- /* generated using openapi-typescript-codegen -- do not edit */
- /* istanbul ignore file */
- /* tslint:disable */
- /* eslint-disable */
- import type { Chapter } from './Chapter';
- export type Section = {
- chapters?: Array<Chapter>;
- headline?: string;
- };
- /* generated using openapi-typescript-codegen -- do not edit */
- /* istanbul ignore file */
- /* tslint:disable */
- /* eslint-disable */
- import type { BasicProperty } from './BasicProperty';
- import type { Subset } from './Subset';
- export type Chapter = {
- properties?: Array<BasicProperty>;
- subsets?: Array<Subset>;
- };
- /* generated using openapi-typescript-codegen -- do not edit */
- /* istanbul ignore file */
- /* tslint:disable */
- /* eslint-disable */
- import type { BasicProperty } from './BasicProperty';
- export type Subset = {
- properties?: Array<BasicProperty>;
- };
- /* generated using openapi-typescript-codegen -- do not edit */
- /* istanbul ignore file */
- /* tslint:disable */
- /* eslint-disable */
- export type BasicProperty = {
- headline?: string;
- value?: string;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement