-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstructPostman.go
65 lines (56 loc) · 1.19 KB
/
structPostman.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
package main
// Collection :
type Collection struct {
Info Info `json:"info"`
Item []Item `json:"item"`
Variable []Variable `json:"variable"`
}
// Info :
type Info struct {
PostID string `json:"_postman_id"`
Name string `json:"name"`
Schema string `json:"schema"`
}
// Item :
type Item struct {
Name string `json:"name"`
Request Request `json:"request"`
Response []string `json:"response"`
}
// Variable :
type Variable struct {
ID string `json:"id"`
Key string `json:"key"`
Value string `json:"value"`
Type string `json:"type"`
}
// Request :
type Request struct {
Method string `json:"method"`
Header []string `json:"header"`
Body Body `json:"body"`
URL URL `json:"url"`
}
// Body :
type Body struct {
Mode string `json:"mode"`
Raw string `json:"raw"`
}
// URL :
type URL struct {
Raw string `json:"raw"`
Protocol string `json:"protocol"`
Host []string `json:"host"`
Port string `json:"port"`
Path []string `json:"path"`
Query []Query `json:"query"`
}
// Query :
type Query struct {
Key string `json:"key"`
Value string `json:"value"`
}
// Response :
type Response struct {
Name string `json:"name"`
}