forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntities.ts
More file actions
83 lines (82 loc) · 2.08 KB
/
Copy pathEntities.ts
File metadata and controls
83 lines (82 loc) · 2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import { Base } from "@openiap/openflow-api";
export class Provider extends Base {
constructor(name: string, public id: string, public provider: string, public issuer: string, public saml_federation_metadata: string) {
super();
this.name = name;
this._type = "provider";
}
}
export class RPAWorkflowParameter {
public name: string;
public type: string;
public direction: string;
}
export class RPAWorkflow extends Base {
constructor() {
super();
this._type = "workflow";
}
public Parameters: RPAWorkflowParameter[];
public Serializable: boolean;
public Filename: string;
public projectid: string;
}
export class Form extends Base {
constructor() {
super();
this._type = "form";
this.dataType = "json";
}
public fbeditor: boolean;
public wizard: boolean;
public schema: any;
public formData: any;
public dataType: string;
}
export class Workflow extends Base {
constructor() {
super();
this._type = "workflow";
}
public rpa: boolean;
public web: boolean;
public queue: string;
}
export class WorkflowInstance extends Base {
constructor() {
super();
this._type = "instance";
}
public queue: string;
public payload: any;
public values: any;
public jwt: string;
public state: string;
public form: string;
public workflow: string;
public userData: string;
public submission: any;
}
export class unattendedclient extends Base {
constructor() {
super();
this._type = "unattendedclient";
}
public windowsusername: string;
public windowspassword: string;
public computername: string;
public computerfqdn: string;
public openrpapath: string;
public autorestart: string;
public rdpretry: string;
public enabled: boolean;
}
export class unattendedserver extends Base {
constructor() {
super();
this._type = "unattendedserver";
}
public computername: string;
public computerfqdn: string;
public enabled: boolean;
}