code
stringlengths
12
335k
docstring
stringlengths
20
20.8k
func_name
stringlengths
1
105
language
stringclasses
1 value
repo
stringclasses
498 values
path
stringlengths
5
172
url
stringlengths
43
235
license
stringclasses
4 values
func (r *SecurityBaselineDeviceStateRequest) Get(ctx context.Context) (resObj *SecurityBaselineDeviceState, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for SecurityBaselineDeviceState
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineDeviceStateRequest) Update(ctx context.Context, reqObj *SecurityBaselineDeviceState) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for SecurityBaselineDeviceState
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineDeviceStateRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for SecurityBaselineDeviceState
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (b *SecurityBaselineSettingStateRequestBuilder) Request() *SecurityBaselineSettingStateRequest { return &SecurityBaselineSettingStateRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns SecurityBaselineSettingStateRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineSettingStateRequest) Get(ctx context.Context) (resObj *SecurityBaselineSettingState, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for SecurityBaselineSettingState
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineSettingStateRequest) Update(ctx context.Context, reqObj *SecurityBaselineSettingState) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for SecurityBaselineSettingState
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineSettingStateRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for SecurityBaselineSettingState
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (b *SecurityBaselineStateRequestBuilder) Request() *SecurityBaselineStateRequest { return &SecurityBaselineStateRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns SecurityBaselineStateRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineStateRequest) Get(ctx context.Context) (resObj *SecurityBaselineState, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for SecurityBaselineState
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineStateRequest) Update(ctx context.Context, reqObj *SecurityBaselineState) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for SecurityBaselineState
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineStateRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for SecurityBaselineState
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (b *SecurityBaselineStateSummaryRequestBuilder) Request() *SecurityBaselineStateSummaryRequest { return &SecurityBaselineStateSummaryRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns SecurityBaselineStateSummaryRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineStateSummaryRequest) Get(ctx context.Context) (resObj *SecurityBaselineStateSummary, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for SecurityBaselineStateSummary
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineStateSummaryRequest) Update(ctx context.Context, reqObj *SecurityBaselineStateSummary) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for SecurityBaselineStateSummary
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineStateSummaryRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for SecurityBaselineStateSummary
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (b *SecurityBaselineTemplateRequestBuilder) Request() *SecurityBaselineTemplateRequest { return &SecurityBaselineTemplateRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns SecurityBaselineTemplateRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineTemplateRequest) Get(ctx context.Context) (resObj *SecurityBaselineTemplate, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for SecurityBaselineTemplate
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineTemplateRequest) Update(ctx context.Context, reqObj *SecurityBaselineTemplate) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for SecurityBaselineTemplate
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (r *SecurityBaselineTemplateRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for SecurityBaselineTemplate
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (b *SecurityActionRequestBuilder) CancelSecurityAction(reqObj *SecurityActionCancelSecurityActionRequestParameter) *SecurityActionCancelSecurityActionRequestBuilder { bb := &SecurityActionCancelSecurityActionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/cancelSecurityAction" bb.BaseRequestBuilder.requestObject = reqObj return bb }
CancelSecurityAction action undocumented
CancelSecurityAction
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestSecurity.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) Date(reqObj *WorkbookFunctionsDateRequestParameter) *WorkbookFunctionsDateRequestBuilder { bb := &WorkbookFunctionsDateRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/date" bb.BaseRequestBuilder.requestObject = reqObj return bb }
Date action undocumented
Date
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDate.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDate.go
Apache-2.0
func (b *PresenceRequestBuilder) Request() *PresenceRequest { return &PresenceRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns PresenceRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go
Apache-2.0
func (r *PresenceRequest) Get(ctx context.Context) (resObj *Presence, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for Presence
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go
Apache-2.0
func (r *PresenceRequest) Update(ctx context.Context, reqObj *Presence) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for Presence
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go
Apache-2.0
func (r *PresenceRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for Presence
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestPresence.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) Tanh(reqObj *WorkbookFunctionsTanhRequestParameter) *WorkbookFunctionsTanhRequestBuilder { bb := &WorkbookFunctionsTanhRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/tanh" bb.BaseRequestBuilder.requestObject = reqObj return bb }
Tanh action undocumented
Tanh
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTanh.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsTanh.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) Disc(reqObj *WorkbookFunctionsDiscRequestParameter) *WorkbookFunctionsDiscRequestBuilder { bb := &WorkbookFunctionsDiscRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/disc" bb.BaseRequestBuilder.requestObject = reqObj return bb }
Disc action undocumented
Disc
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDisc.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDisc.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) Text(reqObj *WorkbookFunctionsTextRequestParameter) *WorkbookFunctionsTextRequestBuilder { bb := &WorkbookFunctionsTextRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/text" bb.BaseRequestBuilder.requestObject = reqObj return bb }
Text action undocumented
Text
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsText.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsText.go
Apache-2.0
func (b *IntuneBrandingProfileRequestBuilder) Request() *IntuneBrandingProfileRequest { return &IntuneBrandingProfileRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns IntuneBrandingProfileRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
func (r *IntuneBrandingProfileRequest) Get(ctx context.Context) (resObj *IntuneBrandingProfile, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for IntuneBrandingProfile
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
func (r *IntuneBrandingProfileRequest) Update(ctx context.Context, reqObj *IntuneBrandingProfile) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for IntuneBrandingProfile
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
func (r *IntuneBrandingProfileRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for IntuneBrandingProfile
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
func (b *IntuneBrandingProfileAssignmentRequestBuilder) Request() *IntuneBrandingProfileAssignmentRequest { return &IntuneBrandingProfileAssignmentRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns IntuneBrandingProfileAssignmentRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
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 }
Get performs GET request for IntuneBrandingProfileAssignment
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
func (r *IntuneBrandingProfileAssignmentRequest) Update(ctx context.Context, reqObj *IntuneBrandingProfileAssignment) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for IntuneBrandingProfileAssignment
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
func (r *IntuneBrandingProfileAssignmentRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for IntuneBrandingProfileAssignment
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
func (b *IntuneBrandingProfileRequestBuilder) Assign(reqObj *IntuneBrandingProfileAssignRequestParameter) *IntuneBrandingProfileAssignRequestBuilder { bb := &IntuneBrandingProfileAssignRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/assign" bb.BaseRequestBuilder.requestObject = reqObj return bb }
Assign action undocumented
Assign
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestIntune.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) Int(reqObj *WorkbookFunctionsIntRequestParameter) *WorkbookFunctionsIntRequestBuilder { bb := &WorkbookFunctionsIntRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/int" bb.BaseRequestBuilder.requestObject = reqObj return bb }
Int action undocumented
Int
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsInt.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsInt.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) IntRate(reqObj *WorkbookFunctionsIntRateRequestParameter) *WorkbookFunctionsIntRateRequestBuilder { bb := &WorkbookFunctionsIntRateRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/intRate" bb.BaseRequestBuilder.requestObject = reqObj return bb }
IntRate action undocumented
IntRate
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsInt.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsInt.go
Apache-2.0
func (b *BookingBusinessRequestBuilder) Appointments() *BookingBusinessAppointmentsCollectionRequestBuilder { bb := &BookingBusinessAppointmentsCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/appointments" return bb }
Appointments returns request builder for BookingAppointment collection
Appointments
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessAppointmentsCollectionRequestBuilder) Request() *BookingBusinessAppointmentsCollectionRequest { return &BookingBusinessAppointmentsCollectionRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns request for BookingAppointment collection
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessAppointmentsCollectionRequestBuilder) ID(id string) *BookingAppointmentRequestBuilder { bb := &BookingAppointmentRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/" + id return bb }
ID returns request builder for BookingAppointment item
ID
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessAppointmentsCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]BookingAppointment, error) { req, err := r.NewJSONRequest(method, path, obj) if err != nil { return nil, err } if ctx != nil { req = req.WithContext(ctx) } res, err := r.client.Do(req) if err != nil { return nil, err } var values []BookingAppointment for { 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 { return nil, fmt.Errorf("%s: %s", res.Status, string(b)) } return nil, errRes } var ( paging Paging value []BookingAppointment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) res.Body.Close() if err != nil { return nil, err } err = jsonx.Unmarshal(paging.Value, &value) if err != nil { return nil, err } values = append(values, value...) if n >= 0 { n-- } if n == 0 || len(paging.NextLink) == 0 { return values, nil } req, err = http.NewRequest("GET", paging.NextLink, nil) if ctx != nil { req = req.WithContext(ctx) } res, err = r.client.Do(req) if err != nil { return nil, err } } }
Paging perfoms paging operation for BookingAppointment collection
Paging
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessAppointmentsCollectionRequest) GetN(ctx context.Context, n int) ([]BookingAppointment, error) { var query string if r.query != nil { query = "?" + r.query.Encode() } return r.Paging(ctx, "GET", query, nil, n) }
GetN performs GET request for BookingAppointment collection, max N pages
GetN
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessAppointmentsCollectionRequest) Get(ctx context.Context) ([]BookingAppointment, error) { return r.GetN(ctx, 0) }
Get performs GET request for BookingAppointment collection
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessAppointmentsCollectionRequest) Add(ctx context.Context, reqObj *BookingAppointment) (resObj *BookingAppointment, err error) { err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj) return }
Add performs POST request for BookingAppointment collection
Add
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessRequestBuilder) CalendarView() *BookingBusinessCalendarViewCollectionRequestBuilder { bb := &BookingBusinessCalendarViewCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/calendarView" return bb }
CalendarView returns request builder for BookingAppointment collection
CalendarView
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessCalendarViewCollectionRequestBuilder) Request() *BookingBusinessCalendarViewCollectionRequest { return &BookingBusinessCalendarViewCollectionRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns request for BookingAppointment collection
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessCalendarViewCollectionRequestBuilder) ID(id string) *BookingAppointmentRequestBuilder { bb := &BookingAppointmentRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/" + id return bb }
ID returns request builder for BookingAppointment item
ID
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessCalendarViewCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]BookingAppointment, error) { req, err := r.NewJSONRequest(method, path, obj) if err != nil { return nil, err } if ctx != nil { req = req.WithContext(ctx) } res, err := r.client.Do(req) if err != nil { return nil, err } var values []BookingAppointment for { 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 { return nil, fmt.Errorf("%s: %s", res.Status, string(b)) } return nil, errRes } var ( paging Paging value []BookingAppointment ) err := jsonx.NewDecoder(res.Body).Decode(&paging) res.Body.Close() if err != nil { return nil, err } err = jsonx.Unmarshal(paging.Value, &value) if err != nil { return nil, err } values = append(values, value...) if n >= 0 { n-- } if n == 0 || len(paging.NextLink) == 0 { return values, nil } req, err = http.NewRequest("GET", paging.NextLink, nil) if ctx != nil { req = req.WithContext(ctx) } res, err = r.client.Do(req) if err != nil { return nil, err } } }
Paging perfoms paging operation for BookingAppointment collection
Paging
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessCalendarViewCollectionRequest) GetN(ctx context.Context, n int) ([]BookingAppointment, error) { var query string if r.query != nil { query = "?" + r.query.Encode() } return r.Paging(ctx, "GET", query, nil, n) }
GetN performs GET request for BookingAppointment collection, max N pages
GetN
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessCalendarViewCollectionRequest) Get(ctx context.Context) ([]BookingAppointment, error) { return r.GetN(ctx, 0) }
Get performs GET request for BookingAppointment collection
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessCalendarViewCollectionRequest) Add(ctx context.Context, reqObj *BookingAppointment) (resObj *BookingAppointment, err error) { err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj) return }
Add performs POST request for BookingAppointment collection
Add
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessRequestBuilder) Customers() *BookingBusinessCustomersCollectionRequestBuilder { bb := &BookingBusinessCustomersCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/customers" return bb }
Customers returns request builder for BookingCustomer collection
Customers
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessCustomersCollectionRequestBuilder) Request() *BookingBusinessCustomersCollectionRequest { return &BookingBusinessCustomersCollectionRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns request for BookingCustomer collection
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessCustomersCollectionRequestBuilder) ID(id string) *BookingCustomerRequestBuilder { bb := &BookingCustomerRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/" + id return bb }
ID returns request builder for BookingCustomer item
ID
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessCustomersCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]BookingCustomer, error) { req, err := r.NewJSONRequest(method, path, obj) if err != nil { return nil, err } if ctx != nil { req = req.WithContext(ctx) } res, err := r.client.Do(req) if err != nil { return nil, err } var values []BookingCustomer for { 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 { return nil, fmt.Errorf("%s: %s", res.Status, string(b)) } return nil, errRes } var ( paging Paging value []BookingCustomer ) err := jsonx.NewDecoder(res.Body).Decode(&paging) res.Body.Close() if err != nil { return nil, err } err = jsonx.Unmarshal(paging.Value, &value) if err != nil { return nil, err } values = append(values, value...) if n >= 0 { n-- } if n == 0 || len(paging.NextLink) == 0 { return values, nil } req, err = http.NewRequest("GET", paging.NextLink, nil) if ctx != nil { req = req.WithContext(ctx) } res, err = r.client.Do(req) if err != nil { return nil, err } } }
Paging perfoms paging operation for BookingCustomer collection
Paging
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessCustomersCollectionRequest) GetN(ctx context.Context, n int) ([]BookingCustomer, error) { var query string if r.query != nil { query = "?" + r.query.Encode() } return r.Paging(ctx, "GET", query, nil, n) }
GetN performs GET request for BookingCustomer collection, max N pages
GetN
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessCustomersCollectionRequest) Get(ctx context.Context) ([]BookingCustomer, error) { return r.GetN(ctx, 0) }
Get performs GET request for BookingCustomer collection
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessCustomersCollectionRequest) Add(ctx context.Context, reqObj *BookingCustomer) (resObj *BookingCustomer, err error) { err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj) return }
Add performs POST request for BookingCustomer collection
Add
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessRequestBuilder) Services() *BookingBusinessServicesCollectionRequestBuilder { bb := &BookingBusinessServicesCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/services" return bb }
Services returns request builder for BookingService collection
Services
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessServicesCollectionRequestBuilder) Request() *BookingBusinessServicesCollectionRequest { return &BookingBusinessServicesCollectionRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns request for BookingService collection
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessServicesCollectionRequestBuilder) ID(id string) *BookingServiceRequestBuilder { bb := &BookingServiceRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/" + id return bb }
ID returns request builder for BookingService item
ID
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessServicesCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]BookingService, error) { req, err := r.NewJSONRequest(method, path, obj) if err != nil { return nil, err } if ctx != nil { req = req.WithContext(ctx) } res, err := r.client.Do(req) if err != nil { return nil, err } var values []BookingService for { 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 { return nil, fmt.Errorf("%s: %s", res.Status, string(b)) } return nil, errRes } var ( paging Paging value []BookingService ) err := jsonx.NewDecoder(res.Body).Decode(&paging) res.Body.Close() if err != nil { return nil, err } err = jsonx.Unmarshal(paging.Value, &value) if err != nil { return nil, err } values = append(values, value...) if n >= 0 { n-- } if n == 0 || len(paging.NextLink) == 0 { return values, nil } req, err = http.NewRequest("GET", paging.NextLink, nil) if ctx != nil { req = req.WithContext(ctx) } res, err = r.client.Do(req) if err != nil { return nil, err } } }
Paging perfoms paging operation for BookingService collection
Paging
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessServicesCollectionRequest) GetN(ctx context.Context, n int) ([]BookingService, error) { var query string if r.query != nil { query = "?" + r.query.Encode() } return r.Paging(ctx, "GET", query, nil, n) }
GetN performs GET request for BookingService collection, max N pages
GetN
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessServicesCollectionRequest) Get(ctx context.Context) ([]BookingService, error) { return r.GetN(ctx, 0) }
Get performs GET request for BookingService collection
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessServicesCollectionRequest) Add(ctx context.Context, reqObj *BookingService) (resObj *BookingService, err error) { err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj) return }
Add performs POST request for BookingService collection
Add
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessRequestBuilder) StaffMembers() *BookingBusinessStaffMembersCollectionRequestBuilder { bb := &BookingBusinessStaffMembersCollectionRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/staffMembers" return bb }
StaffMembers returns request builder for BookingStaffMember collection
StaffMembers
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessStaffMembersCollectionRequestBuilder) Request() *BookingBusinessStaffMembersCollectionRequest { return &BookingBusinessStaffMembersCollectionRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns request for BookingStaffMember collection
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *BookingBusinessStaffMembersCollectionRequestBuilder) ID(id string) *BookingStaffMemberRequestBuilder { bb := &BookingStaffMemberRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.baseURL += "/" + id return bb }
ID returns request builder for BookingStaffMember item
ID
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessStaffMembersCollectionRequest) Paging(ctx context.Context, method, path string, obj interface{}, n int) ([]BookingStaffMember, error) { req, err := r.NewJSONRequest(method, path, obj) if err != nil { return nil, err } if ctx != nil { req = req.WithContext(ctx) } res, err := r.client.Do(req) if err != nil { return nil, err } var values []BookingStaffMember for { 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 { return nil, fmt.Errorf("%s: %s", res.Status, string(b)) } return nil, errRes } var ( paging Paging value []BookingStaffMember ) err := jsonx.NewDecoder(res.Body).Decode(&paging) res.Body.Close() if err != nil { return nil, err } err = jsonx.Unmarshal(paging.Value, &value) if err != nil { return nil, err } values = append(values, value...) if n >= 0 { n-- } if n == 0 || len(paging.NextLink) == 0 { return values, nil } req, err = http.NewRequest("GET", paging.NextLink, nil) if ctx != nil { req = req.WithContext(ctx) } res, err = r.client.Do(req) if err != nil { return nil, err } } }
Paging perfoms paging operation for BookingStaffMember collection
Paging
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessStaffMembersCollectionRequest) GetN(ctx context.Context, n int) ([]BookingStaffMember, error) { var query string if r.query != nil { query = "?" + r.query.Encode() } return r.Paging(ctx, "GET", query, nil, n) }
GetN performs GET request for BookingStaffMember collection, max N pages
GetN
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessStaffMembersCollectionRequest) Get(ctx context.Context) ([]BookingStaffMember, error) { return r.GetN(ctx, 0) }
Get performs GET request for BookingStaffMember collection
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (r *BookingBusinessStaffMembersCollectionRequest) Add(ctx context.Context, reqObj *BookingStaffMember) (resObj *BookingStaffMember, err error) { err = r.JSONRequest(ctx, "POST", "", reqObj, &resObj) return }
Add performs POST request for BookingStaffMember collection
Add
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/ActionBooking.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) Dproduct(reqObj *WorkbookFunctionsDproductRequestParameter) *WorkbookFunctionsDproductRequestBuilder { bb := &WorkbookFunctionsDproductRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/dproduct" bb.BaseRequestBuilder.requestObject = reqObj return bb }
Dproduct action undocumented
Dproduct
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDproduct.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDproduct.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) DevSq(reqObj *WorkbookFunctionsDevSqRequestParameter) *WorkbookFunctionsDevSqRequestBuilder { bb := &WorkbookFunctionsDevSqRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/devSq" bb.BaseRequestBuilder.requestObject = reqObj return bb }
DevSq action undocumented
DevSq
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDev.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsDev.go
Apache-2.0
func (b *ReportRootRequestBuilder) Request() *ReportRootRequest { return &ReportRootRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns ReportRootRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go
Apache-2.0
func (r *ReportRootRequest) Get(ctx context.Context) (resObj *ReportRoot, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for ReportRoot
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go
Apache-2.0
func (r *ReportRootRequest) Update(ctx context.Context, reqObj *ReportRoot) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for ReportRoot
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go
Apache-2.0
func (r *ReportRootRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for ReportRoot
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestReport.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) F_Dist(reqObj *WorkbookFunctionsF_DistRequestParameter) *WorkbookFunctionsF_DistRequestBuilder { bb := &WorkbookFunctionsF_DistRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/f_Dist" bb.BaseRequestBuilder.requestObject = reqObj return bb }
F_Dist action undocumented
F_Dist
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) F_Dist_RT(reqObj *WorkbookFunctionsF_Dist_RTRequestParameter) *WorkbookFunctionsF_Dist_RTRequestBuilder { bb := &WorkbookFunctionsF_Dist_RTRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/f_Dist_RT" bb.BaseRequestBuilder.requestObject = reqObj return bb }
F_Dist_RT action undocumented
F_Dist_RT
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) F_Inv(reqObj *WorkbookFunctionsF_InvRequestParameter) *WorkbookFunctionsF_InvRequestBuilder { bb := &WorkbookFunctionsF_InvRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/f_Inv" bb.BaseRequestBuilder.requestObject = reqObj return bb }
F_Inv action undocumented
F_Inv
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go
Apache-2.0
func (b *WorkbookFunctionsRequestBuilder) F_Inv_RT(reqObj *WorkbookFunctionsF_Inv_RTRequestParameter) *WorkbookFunctionsF_Inv_RTRequestBuilder { bb := &WorkbookFunctionsF_Inv_RTRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder} bb.BaseRequestBuilder.baseURL += "/f_Inv_RT" bb.BaseRequestBuilder.requestObject = reqObj return bb }
F_Inv_RT action undocumented
F_Inv_RT
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsF_.go
Apache-2.0
func (b *DetectedAppRequestBuilder) Request() *DetectedAppRequest { return &DetectedAppRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns DetectedAppRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go
Apache-2.0
func (r *DetectedAppRequest) Get(ctx context.Context) (resObj *DetectedApp, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for DetectedApp
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go
Apache-2.0
func (r *DetectedAppRequest) Update(ctx context.Context, reqObj *DetectedApp) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for DetectedApp
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go
Apache-2.0
func (r *DetectedAppRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for DetectedApp
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestDetected.go
Apache-2.0
func (b *OutlookCategoryRequestBuilder) Request() *OutlookCategoryRequest { return &OutlookCategoryRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns OutlookCategoryRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookCategoryRequest) Get(ctx context.Context) (resObj *OutlookCategory, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for OutlookCategory
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookCategoryRequest) Update(ctx context.Context, reqObj *OutlookCategory) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for OutlookCategory
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookCategoryRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for OutlookCategory
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (b *OutlookItemRequestBuilder) Request() *OutlookItemRequest { return &OutlookItemRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns OutlookItemRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookItemRequest) Get(ctx context.Context) (resObj *OutlookItem, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for OutlookItem
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookItemRequest) Update(ctx context.Context, reqObj *OutlookItem) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for OutlookItem
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookItemRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for OutlookItem
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (b *OutlookTaskRequestBuilder) Request() *OutlookTaskRequest { return &OutlookTaskRequest{ BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client}, } }
Request returns OutlookTaskRequest
Request
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookTaskRequest) Get(ctx context.Context) (resObj *OutlookTask, err error) { var query string if r.query != nil { query = "?" + r.query.Encode() } err = r.JSONRequest(ctx, "GET", query, nil, &resObj) return }
Get performs GET request for OutlookTask
Get
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookTaskRequest) Update(ctx context.Context, reqObj *OutlookTask) error { return r.JSONRequest(ctx, "PATCH", "", reqObj, nil) }
Update performs PATCH request for OutlookTask
Update
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0
func (r *OutlookTaskRequest) Delete(ctx context.Context) error { return r.JSONRequest(ctx, "DELETE", "", nil, nil) }
Delete performs DELETE request for OutlookTask
Delete
go
42wim/matterbridge
vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
https://github.com/42wim/matterbridge/blob/master/vendor/github.com/yaegashi/msgraph.go/beta/RequestOutlook.go
Apache-2.0