-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication-access-policy.ts
More file actions
44 lines (38 loc) · 1.01 KB
/
Copy pathapplication-access-policy.ts
File metadata and controls
44 lines (38 loc) · 1.01 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
/* tslint:disable */
/* eslint-disable */
/**
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.2
* Contact: info@pollination.solutions
*
* 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 { Permission } from './permission';
// May contain unused imports in some cases
// @ts-ignore
import type { PolicySubject } from './policy-subject';
/**
*
* @export
* @interface ApplicationAccessPolicy
*/
export interface ApplicationAccessPolicy {
/**
* The permission given to the subject of the access policy
* @type {Permission}
* @memberof ApplicationAccessPolicy
*/
'permission': Permission;
/**
* The subject of the access policy
* @type {PolicySubject}
* @memberof ApplicationAccessPolicy
*/
'subject': PolicySubject;
}