summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go97
1 files changed, 97 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go b/vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go
new file mode 100644
index 00000000..63eb391b
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go
@@ -0,0 +1,97 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+import "context"
+
+// JournalRequestBuilder is request builder for Journal
+type JournalRequestBuilder struct{ BaseRequestBuilder }
+
+// Request returns JournalRequest
+func (b *JournalRequestBuilder) Request() *JournalRequest {
+ return &JournalRequest{
+ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
+ }
+}
+
+// JournalRequest is request for Journal
+type JournalRequest struct{ BaseRequest }
+
+// Get performs GET request for Journal
+func (r *JournalRequest) Get(ctx context.Context) (resObj *Journal, err error) {
+ var query string
+ if r.query != nil {
+ query = "?" + r.query.Encode()
+ }
+ err = r.JSONRequest(ctx, "GET", query, nil, &resObj)
+ return
+}
+
+// Update performs PATCH request for Journal
+func (r *JournalRequest) Update(ctx context.Context, reqObj *Journal) error {
+ return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
+}
+
+// Delete performs DELETE request for Journal
+func (r *JournalRequest) Delete(ctx context.Context) error {
+ return r.JSONRequest(ctx, "DELETE", "", nil, nil)
+}
+
+// JournalLineRequestBuilder is request builder for JournalLine
+type JournalLineRequestBuilder struct{ BaseRequestBuilder }
+
+// Request returns JournalLineRequest
+func (b *JournalLineRequestBuilder) Request() *JournalLineRequest {
+ return &JournalLineRequest{
+ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
+ }
+}
+
+// JournalLineRequest is request for JournalLine
+type JournalLineRequest struct{ BaseRequest }
+
+// Get performs GET request for JournalLine
+func (r *JournalLineRequest) Get(ctx context.Context) (resObj *JournalLine, err error) {
+ var query string
+ if r.query != nil {
+ query = "?" + r.query.Encode()
+ }
+ err = r.JSONRequest(ctx, "GET", query, nil, &resObj)
+ return
+}
+
+// Update performs PATCH request for JournalLine
+func (r *JournalLineRequest) Update(ctx context.Context, reqObj *JournalLine) error {
+ return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
+}
+
+// Delete performs DELETE request for JournalLine
+func (r *JournalLineRequest) Delete(ctx context.Context) error {
+ return r.JSONRequest(ctx, "DELETE", "", nil, nil)
+}
+
+//
+type JournalPostRequestBuilder struct{ BaseRequestBuilder }
+
+// Post action undocumented
+func (b *JournalRequestBuilder) Post(reqObj *JournalPostRequestParameter) *JournalPostRequestBuilder {
+ bb := &JournalPostRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
+ bb.BaseRequestBuilder.baseURL += "/post"
+ bb.BaseRequestBuilder.requestObject = reqObj
+ return bb
+}
+
+//
+type JournalPostRequest struct{ BaseRequest }
+
+//
+func (b *JournalPostRequestBuilder) Request() *JournalPostRequest {
+ return &JournalPostRequest{
+ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
+ }
+}
+
+//
+func (r *JournalPostRequest) Post(ctx context.Context) error {
+ return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
+}