2020-09-04 21:29:13 +00:00
|
|
|
// Code generated by msgraph.go/gen DO NOT EDIT.
|
2020-03-15 22:43:46 +00:00
|
|
|
|
|
|
|
package msgraph
|
|
|
|
|
|
|
|
import "context"
|
|
|
|
|
|
|
|
// SectionGroupRequestBuilder is request builder for SectionGroup
|
|
|
|
type SectionGroupRequestBuilder struct{ BaseRequestBuilder }
|
|
|
|
|
|
|
|
// Request returns SectionGroupRequest
|
|
|
|
func (b *SectionGroupRequestBuilder) Request() *SectionGroupRequest {
|
|
|
|
return &SectionGroupRequest{
|
|
|
|
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SectionGroupRequest is request for SectionGroup
|
|
|
|
type SectionGroupRequest struct{ BaseRequest }
|
|
|
|
|
|
|
|
// Get performs GET request for SectionGroup
|
|
|
|
func (r *SectionGroupRequest) Get(ctx context.Context) (resObj *SectionGroup, 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 SectionGroup
|
|
|
|
func (r *SectionGroupRequest) Update(ctx context.Context, reqObj *SectionGroup) error {
|
|
|
|
return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete performs DELETE request for SectionGroup
|
|
|
|
func (r *SectionGroupRequest) Delete(ctx context.Context) error {
|
|
|
|
return r.JSONRequest(ctx, "DELETE", "", nil, nil)
|
|
|
|
}
|