1
|
/* 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 CatalogItemDto {
|
13
|
/** @format uuid */
|
14
|
id?: string;
|
15
|
name?: string;
|
16
|
|
17
|
/** @format int32 */
|
18
|
certainty?: number;
|
19
|
|
20
|
/** @format double */
|
21
|
longitude?: number;
|
22
|
|
23
|
/** @format double */
|
24
|
latitude?: number;
|
25
|
bibliography?: string[];
|
26
|
countries?: string[];
|
27
|
writtenForms?: string[];
|
28
|
alternativeNames?: string[];
|
29
|
types?: string[];
|
30
|
}
|
31
|
|
32
|
export interface PasswordDto {
|
33
|
password: string;
|
34
|
confirmationPassword: string;
|
35
|
}
|
36
|
|
37
|
export interface PermissionDto {
|
38
|
canRead?: boolean;
|
39
|
canWrite?: boolean;
|
40
|
canDelete?: boolean;
|
41
|
}
|
42
|
|
43
|
export interface UserDto {
|
44
|
name?: string;
|
45
|
email: string;
|
46
|
permissions?: PermissionDto;
|
47
|
passwords: PasswordDto;
|
48
|
}
|
49
|
|
50
|
export interface TitlePage {
|
51
|
title?: string;
|
52
|
content?: string;
|
53
|
}
|