Advertisement
Slightom

x

Apr 4th, 2025
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* generated using openapi-typescript-codegen -- do not edit */
  2. /* istanbul ignore file */
  3. /* tslint:disable */
  4. /* eslint-disable */
  5. import type { Section } from './Section';
  6. export type Substance = {
  7.     chemicalFormula?: string;
  8.     eNumber?: string;
  9.     general?: Array<Section>;
  10.     gn?: string;
  11.     hazardsPictograms?: Array<string>;
  12.     health?: Array<Section>;
  13.     highlight?: string;
  14.     id?: number;
  15.     imageId?: string;
  16.     leadName?: string;
  17.     name?: Array<string>;
  18.     regulations?: Array<Section>;
  19.     un?: string;
  20. };
  21.  
  22.  
  23. /* generated using openapi-typescript-codegen -- do not edit */
  24. /* istanbul ignore file */
  25. /* tslint:disable */
  26. /* eslint-disable */
  27. import type { Chapter } from './Chapter';
  28. export type Section = {
  29.     chapters?: Array<Chapter>;
  30.     headline?: string;
  31. };
  32.  
  33.  
  34. /* generated using openapi-typescript-codegen -- do not edit */
  35. /* istanbul ignore file */
  36. /* tslint:disable */
  37. /* eslint-disable */
  38. import type { BasicProperty } from './BasicProperty';
  39. import type { Subset } from './Subset';
  40. export type Chapter = {
  41.     properties?: Array<BasicProperty>;
  42.     subsets?: Array<Subset>;
  43. };
  44.  
  45.  
  46. /* generated using openapi-typescript-codegen -- do not edit */
  47. /* istanbul ignore file */
  48. /* tslint:disable */
  49. /* eslint-disable */
  50. import type { BasicProperty } from './BasicProperty';
  51. export type Subset = {
  52.     properties?: Array<BasicProperty>;
  53. };
  54.  
  55.  
  56. /* generated using openapi-typescript-codegen -- do not edit */
  57. /* istanbul ignore file */
  58. /* tslint:disable */
  59. /* eslint-disable */
  60. export type BasicProperty = {
  61.     headline?: string;
  62.     value?: string;
  63. };
  64.  
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement