-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication-deployment.ts
More file actions
54 lines (50 loc) · 1.28 KB
/
application-deployment.ts
File metadata and controls
54 lines (50 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* tslint:disable */
/* eslint-disable */
/**
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.8
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { AccountPublic } from './account-public';
// May contain unused imports in some cases
// @ts-ignore
import type { ApplicationVersion } from './application-version';
/**
*
* @export
* @interface ApplicationDeployment
*/
export interface ApplicationDeployment {
/**
* The user who deployed this app
* @type {AccountPublic}
* @memberof ApplicationDeployment
*/
'author': AccountPublic;
/**
* Indicates whether the application deployment is ready.
* @type {boolean}
* @memberof ApplicationDeployment
*/
'ready': boolean;
/**
* The URL of the application deployment.
* @type {string}
* @memberof ApplicationDeployment
*/
'url': string;
/**
* The version deployed
* @type {ApplicationVersion}
* @memberof ApplicationDeployment
*/
'version': ApplicationVersion;
}