File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -33,20 +33,20 @@ type ProcessAction struct {
33
33
34
34
// ProcessAssignee represents a ProcessState assignee
35
35
type ProcessAssignee struct {
36
- Type string `json:type`
37
- Entities []* ProcessEntity `json:entities`
36
+ Type string `json:" type" `
37
+ Entities []* ProcessEntity `json:" entities" `
38
38
}
39
39
40
40
// ProcessEntity represents a process assignee entity
41
41
type ProcessEntity struct {
42
- Entity * Entity `json:entity`
43
- IncludeSubs bool `json:includeSubs`
42
+ Entity * Entity `json:" entity" `
43
+ IncludeSubs bool `json:" includeSubs" `
44
44
}
45
45
46
46
// Entity is the concrete representation of a process entity
47
47
type Entity struct {
48
- Type string `json:type`
49
- Code string `json:code`
48
+ Type string `json:" type" `
49
+ Code string `json:" code" `
50
50
}
51
51
52
52
func DecodeProcess (b []byte ) (p * Process , err error ) {
You can’t perform that action at this time.
0 commit comments