-
Notifications
You must be signed in to change notification settings - Fork 13
/
testexecutionresult.go
90 lines (65 loc) · 2.42 KB
/
testexecutionresult.go
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
84
85
86
87
88
89
90
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Testexecutionresult
type Testexecutionresult struct {
// Operations - Execution operations performed as part of the test
Operations *[]Testexecutionoperationresult `json:"operations,omitempty"`
// VarError - The final error encountered during the test that resulted in test failure
VarError *Errorbody `json:"error,omitempty"`
// FinalResult - The final result of the test. This is the response that would be returned during normal action execution
FinalResult *interface{} `json:"finalResult,omitempty"`
// Success - Indicates whether or not the test was a success
Success *bool `json:"success,omitempty"`
}
func (o *Testexecutionresult) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Testexecutionresult
return json.Marshal(&struct {
Operations *[]Testexecutionoperationresult `json:"operations,omitempty"`
VarError *Errorbody `json:"error,omitempty"`
FinalResult *interface{} `json:"finalResult,omitempty"`
Success *bool `json:"success,omitempty"`
*Alias
}{
Operations: o.Operations,
VarError: o.VarError,
FinalResult: o.FinalResult,
Success: o.Success,
Alias: (*Alias)(o),
})
}
func (o *Testexecutionresult) UnmarshalJSON(b []byte) error {
var TestexecutionresultMap map[string]interface{}
err := json.Unmarshal(b, &TestexecutionresultMap)
if err != nil {
return err
}
if Operations, ok := TestexecutionresultMap["operations"].([]interface{}); ok {
OperationsString, _ := json.Marshal(Operations)
json.Unmarshal(OperationsString, &o.Operations)
}
if VarError, ok := TestexecutionresultMap["error"].(map[string]interface{}); ok {
VarErrorString, _ := json.Marshal(VarError)
json.Unmarshal(VarErrorString, &o.VarError)
}
if FinalResult, ok := TestexecutionresultMap["finalResult"].(map[string]interface{}); ok {
FinalResultString, _ := json.Marshal(FinalResult)
json.Unmarshal(FinalResultString, &o.FinalResult)
}
if Success, ok := TestexecutionresultMap["success"].(bool); ok {
o.Success = &Success
}
return nil
}
// String returns a JSON representation of the model
func (o *Testexecutionresult) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}