mirror of
				https://github.com/42wim/matterbridge.git
				synced 2025-11-04 07:47:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1019 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1019 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Code generated by msgraph-generate.go DO NOT EDIT.
 | 
						|
 | 
						|
package msgraph
 | 
						|
 | 
						|
import "context"
 | 
						|
 | 
						|
//
 | 
						|
type WorkbookFunctionsBitxorRequestBuilder struct{ BaseRequestBuilder }
 | 
						|
 | 
						|
// Bitxor action undocumented
 | 
						|
func (b *WorkbookFunctionsRequestBuilder) Bitxor(reqObj *WorkbookFunctionsBitxorRequestParameter) *WorkbookFunctionsBitxorRequestBuilder {
 | 
						|
	bb := &WorkbookFunctionsBitxorRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
 | 
						|
	bb.BaseRequestBuilder.baseURL += "/bitxor"
 | 
						|
	bb.BaseRequestBuilder.requestObject = reqObj
 | 
						|
	return bb
 | 
						|
}
 | 
						|
 | 
						|
//
 | 
						|
type WorkbookFunctionsBitxorRequest struct{ BaseRequest }
 | 
						|
 | 
						|
//
 | 
						|
func (b *WorkbookFunctionsBitxorRequestBuilder) Request() *WorkbookFunctionsBitxorRequest {
 | 
						|
	return &WorkbookFunctionsBitxorRequest{
 | 
						|
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
//
 | 
						|
func (r *WorkbookFunctionsBitxorRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
 | 
						|
	err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
 | 
						|
	return
 | 
						|
}
 |