// Code generated by msgraph-generate.go DO NOT EDIT. package msgraph import "context" // IntuneBrandingProfileAssignmentRequestBuilder is request builder for IntuneBrandingProfileAssignment type IntuneBrandingProfileAssignmentRequestBuilder struct{ BaseRequestBuilder } // Request returns IntuneBrandingProfileAssignmentRequest func (b *IntuneBrandingProfileAssignmentRequestBuilder) Request() *IntuneBrandingProfileAssignmentRequest { return &IntuneBrandingProfileAssignmentRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } } // IntuneBrandingProfileAssignmentRequest is request for IntuneBrandingProfileAssignment type IntuneBrandingProfileAssignmentRequest struct{ BaseRequest } // Get performs GET request for IntuneBrandingProfileAssignment func (r *IntuneBrandingProfileAssignmentRequest) Get(ctx context.Context) (resObj *IntuneBrandingProfileAssignment, 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 IntuneBrandingProfileAssignment func (r *IntuneBrandingProfileAssignmentRequest) Update(ctx context.Context, reqObj *IntuneBrandingProfileAssignment) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) } // Delete performs DELETE request for IntuneBrandingProfileAssignment func (r *IntuneBrandingProfileAssignmentRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }