Projekt

Obecné

Profil

Stáhnout (936 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 c7d2ced1 Václav Honzík
/* eslint-disable */
2
/* tslint:disable */
3
/*
4
 * ---------------------------------------------------------------
5
 * ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API        ##
6
 * ##                                                           ##
7
 * ## AUTHOR: acacode                                           ##
8
 * ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
9
 * ---------------------------------------------------------------
10
 */
11
12
export interface UserDto {
13
  name?: string;
14
  email: string;
15
  canRead?: boolean;
16
  canWrite?: boolean;
17
  canDelete?: boolean;
18
}
19
20
export interface CatalogDto {
21
  /** @format uuid */
22
  id?: string;
23
  name?: string;
24
25
  /** @format int32 */
26
  certainty?: number;
27
28
  /** @format double */
29
  longitude?: number;
30
31
  /** @format double */
32
  latitude?: number;
33
  bibliography?: string[];
34
  countries?: string[];
35
  writtenForms?: string[];
36
  alternativeNames?: string[];
37
  types?: string[];
38
}