-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.go
68 lines (53 loc) · 1.37 KB
/
project.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
package files_sdk
import (
"encoding/json"
lib "github.com/Files-com/files-sdk-go/v2/lib"
)
type Project struct {
Id int64 `json:"id,omitempty"`
GlobalAccess string `json:"global_access,omitempty"`
}
type ProjectCollection []Project
type ProjectListParams struct {
Cursor string `url:"cursor,omitempty" required:"false"`
PerPage int64 `url:"per_page,omitempty" required:"false"`
lib.ListParams
}
type ProjectFindParams struct {
Id int64 `url:"-,omitempty" required:"true"`
}
type ProjectCreateParams struct {
GlobalAccess string `url:"global_access,omitempty" required:"true"`
}
type ProjectUpdateParams struct {
Id int64 `url:"-,omitempty" required:"true"`
GlobalAccess string `url:"global_access,omitempty" required:"true"`
}
type ProjectDeleteParams struct {
Id int64 `url:"-,omitempty" required:"true"`
}
func (p *Project) UnmarshalJSON(data []byte) error {
type project Project
var v project
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*p = Project(v)
return nil
}
func (p *ProjectCollection) UnmarshalJSON(data []byte) error {
type projects []Project
var v projects
if err := json.Unmarshal(data, &v); err != nil {
return err
}
*p = ProjectCollection(v)
return nil
}
func (p *ProjectCollection) ToSlice() *[]interface{} {
ret := make([]interface{}, len(*p))
for i, v := range *p {
ret[i] = v
}
return &ret
}