diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go index 979e714b..50f1eac0 100644 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionOnenote.go @@ -1,4 +1,4 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. +// Code generated by msgraph.go/gen DO NOT EDIT. package msgraph @@ -99,9 +99,9 @@ func (r *OnenoteNotebooksCollectionRequest) Paging(ctx context.Context, method, } var values []Notebook for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -114,6 +114,7 @@ func (r *OnenoteNotebooksCollectionRequest) Paging(ctx context.Context, method, value []Notebook ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -201,9 +202,9 @@ func (r *OnenoteOperationsCollectionRequest) Paging(ctx context.Context, method, } var values []OnenoteOperation for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -216,6 +217,7 @@ func (r *OnenoteOperationsCollectionRequest) Paging(ctx context.Context, method, value []OnenoteOperation ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -303,9 +305,9 @@ func (r *OnenotePagesCollectionRequest) Paging(ctx context.Context, method, path } var values []OnenotePage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -318,6 +320,7 @@ func (r *OnenotePagesCollectionRequest) Paging(ctx context.Context, method, path value []OnenotePage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -405,9 +408,9 @@ func (r *OnenoteResourcesCollectionRequest) Paging(ctx context.Context, method, } var values []OnenoteResource for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -420,6 +423,7 @@ func (r *OnenoteResourcesCollectionRequest) Paging(ctx context.Context, method, value []OnenoteResource ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -507,9 +511,9 @@ func (r *OnenoteSectionGroupsCollectionRequest) Paging(ctx context.Context, meth } var values []SectionGroup for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -522,6 +526,7 @@ func (r *OnenoteSectionGroupsCollectionRequest) Paging(ctx context.Context, meth value []SectionGroup ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -609,9 +614,9 @@ func (r *OnenoteSectionsCollectionRequest) Paging(ctx context.Context, method, p } var values []OnenoteSection for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -624,6 +629,7 @@ func (r *OnenoteSectionsCollectionRequest) Paging(ctx context.Context, method, p value []OnenoteSection ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } @@ -725,9 +731,9 @@ func (r *OnenoteSectionPagesCollectionRequest) Paging(ctx context.Context, metho } var values []OnenotePage for { - defer res.Body.Close() if res.StatusCode != http.StatusOK { b, _ := ioutil.ReadAll(res.Body) + res.Body.Close() errRes := &ErrorResponse{Response: res} err := jsonx.Unmarshal(b, errRes) if err != nil { @@ -740,6 +746,7 @@ func (r *OnenoteSectionPagesCollectionRequest) Paging(ctx context.Context, metho value []OnenotePage ) err := jsonx.NewDecoder(res.Body).Decode(&paging) + res.Body.Close() if err != nil { return nil, err } |