forked from lug/matterbridge
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by msgraph-generate.go DO NOT EDIT.
 | |
| 
 | |
| package msgraph
 | |
| 
 | |
| import "context"
 | |
| 
 | |
| //
 | |
| type WorkbookFunctionsStandardizeRequestBuilder struct{ BaseRequestBuilder }
 | |
| 
 | |
| // Standardize action undocumented
 | |
| func (b *WorkbookFunctionsRequestBuilder) Standardize(reqObj *WorkbookFunctionsStandardizeRequestParameter) *WorkbookFunctionsStandardizeRequestBuilder {
 | |
| 	bb := &WorkbookFunctionsStandardizeRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
 | |
| 	bb.BaseRequestBuilder.baseURL += "/standardize"
 | |
| 	bb.BaseRequestBuilder.requestObject = reqObj
 | |
| 	return bb
 | |
| }
 | |
| 
 | |
| //
 | |
| type WorkbookFunctionsStandardizeRequest struct{ BaseRequest }
 | |
| 
 | |
| //
 | |
| func (b *WorkbookFunctionsStandardizeRequestBuilder) Request() *WorkbookFunctionsStandardizeRequest {
 | |
| 	return &WorkbookFunctionsStandardizeRequest{
 | |
| 		BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
 | |
| 	}
 | |
| }
 | |
| 
 | |
| //
 | |
| func (r *WorkbookFunctionsStandardizeRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
 | |
| 	err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
 | |
| 	return
 | |
| }
 | 
