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
91
92
93
94
95
96
97
98
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "context"
// WorkbookCreateSessionRequestParameter undocumented
type WorkbookCreateSessionRequestParameter struct {
// PersistChanges undocumented
PersistChanges *bool `json:"persistChanges,omitempty"`
}
// WorkbookCloseSessionRequestParameter undocumented
type WorkbookCloseSessionRequestParameter struct {
}
// WorkbookRefreshSessionRequestParameter undocumented
type WorkbookRefreshSessionRequestParameter struct {
}
//
type WorkbookCreateSessionRequestBuilder struct{ BaseRequestBuilder }
// CreateSession action undocumented
func (b *WorkbookRequestBuilder) CreateSession(reqObj *WorkbookCreateSessionRequestParameter) *WorkbookCreateSessionRequestBuilder {
bb := &WorkbookCreateSessionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/createSession"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type WorkbookCreateSessionRequest struct{ BaseRequest }
//
func (b *WorkbookCreateSessionRequestBuilder) Request() *WorkbookCreateSessionRequest {
return &WorkbookCreateSessionRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *WorkbookCreateSessionRequest) Post(ctx context.Context) (resObj *WorkbookSessionInfo, err error) {
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
return
}
//
type WorkbookCloseSessionRequestBuilder struct{ BaseRequestBuilder }
// CloseSession action undocumented
func (b *WorkbookRequestBuilder) CloseSession(reqObj *WorkbookCloseSessionRequestParameter) *WorkbookCloseSessionRequestBuilder {
bb := &WorkbookCloseSessionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/closeSession"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type WorkbookCloseSessionRequest struct{ BaseRequest }
//
func (b *WorkbookCloseSessionRequestBuilder) Request() *WorkbookCloseSessionRequest {
return &WorkbookCloseSessionRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *WorkbookCloseSessionRequest) Post(ctx context.Context) error {
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
}
//
type WorkbookRefreshSessionRequestBuilder struct{ BaseRequestBuilder }
// RefreshSession action undocumented
func (b *WorkbookRequestBuilder) RefreshSession(reqObj *WorkbookRefreshSessionRequestParameter) *WorkbookRefreshSessionRequestBuilder {
bb := &WorkbookRefreshSessionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/refreshSession"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type WorkbookRefreshSessionRequest struct{ BaseRequest }
//
func (b *WorkbookRefreshSessionRequestBuilder) Request() *WorkbookRefreshSessionRequest {
return &WorkbookRefreshSessionRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *WorkbookRefreshSessionRequest) Post(ctx context.Context) error {
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
}
|