mirror of
				https://github.com/42wim/matterbridge.git
				synced 2025-11-03 23:37:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			978 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			978 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Code generated by msgraph.go/gen DO NOT EDIT.
 | 
						|
 | 
						|
package msgraph
 | 
						|
 | 
						|
import "context"
 | 
						|
 | 
						|
//
 | 
						|
type WorkbookFunctionsIrrRequestBuilder struct{ BaseRequestBuilder }
 | 
						|
 | 
						|
// Irr action undocumented
 | 
						|
func (b *WorkbookFunctionsRequestBuilder) Irr(reqObj *WorkbookFunctionsIrrRequestParameter) *WorkbookFunctionsIrrRequestBuilder {
 | 
						|
	bb := &WorkbookFunctionsIrrRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
 | 
						|
	bb.BaseRequestBuilder.baseURL += "/irr"
 | 
						|
	bb.BaseRequestBuilder.requestObject = reqObj
 | 
						|
	return bb
 | 
						|
}
 | 
						|
 | 
						|
//
 | 
						|
type WorkbookFunctionsIrrRequest struct{ BaseRequest }
 | 
						|
 | 
						|
//
 | 
						|
func (b *WorkbookFunctionsIrrRequestBuilder) Request() *WorkbookFunctionsIrrRequest {
 | 
						|
	return &WorkbookFunctionsIrrRequest{
 | 
						|
		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
//
 | 
						|
func (r *WorkbookFunctionsIrrRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
 | 
						|
	err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
 | 
						|
	return
 | 
						|
}
 |