mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-09-11 01:52:30 +00:00
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
This commit is contained in:
86
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPrice.go
generated
vendored
Normal file
86
vendor/github.com/yaegashi/msgraph.go/beta/RequestWorkbookFunctionsPrice.go
generated
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||||
|
||||
package msgraph
|
||||
|
||||
import "context"
|
||||
|
||||
//
|
||||
type WorkbookFunctionsPriceRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// Price action undocumented
|
||||
func (b *WorkbookFunctionsRequestBuilder) Price(reqObj *WorkbookFunctionsPriceRequestParameter) *WorkbookFunctionsPriceRequestBuilder {
|
||||
bb := &WorkbookFunctionsPriceRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||||
bb.BaseRequestBuilder.baseURL += "/price"
|
||||
bb.BaseRequestBuilder.requestObject = reqObj
|
||||
return bb
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsPriceRequest struct{ BaseRequest }
|
||||
|
||||
//
|
||||
func (b *WorkbookFunctionsPriceRequestBuilder) Request() *WorkbookFunctionsPriceRequest {
|
||||
return &WorkbookFunctionsPriceRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func (r *WorkbookFunctionsPriceRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
|
||||
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
|
||||
return
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsPriceDiscRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// PriceDisc action undocumented
|
||||
func (b *WorkbookFunctionsRequestBuilder) PriceDisc(reqObj *WorkbookFunctionsPriceDiscRequestParameter) *WorkbookFunctionsPriceDiscRequestBuilder {
|
||||
bb := &WorkbookFunctionsPriceDiscRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||||
bb.BaseRequestBuilder.baseURL += "/priceDisc"
|
||||
bb.BaseRequestBuilder.requestObject = reqObj
|
||||
return bb
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsPriceDiscRequest struct{ BaseRequest }
|
||||
|
||||
//
|
||||
func (b *WorkbookFunctionsPriceDiscRequestBuilder) Request() *WorkbookFunctionsPriceDiscRequest {
|
||||
return &WorkbookFunctionsPriceDiscRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func (r *WorkbookFunctionsPriceDiscRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
|
||||
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
|
||||
return
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsPriceMatRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// PriceMat action undocumented
|
||||
func (b *WorkbookFunctionsRequestBuilder) PriceMat(reqObj *WorkbookFunctionsPriceMatRequestParameter) *WorkbookFunctionsPriceMatRequestBuilder {
|
||||
bb := &WorkbookFunctionsPriceMatRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||||
bb.BaseRequestBuilder.baseURL += "/priceMat"
|
||||
bb.BaseRequestBuilder.requestObject = reqObj
|
||||
return bb
|
||||
}
|
||||
|
||||
//
|
||||
type WorkbookFunctionsPriceMatRequest struct{ BaseRequest }
|
||||
|
||||
//
|
||||
func (b *WorkbookFunctionsPriceMatRequestBuilder) Request() *WorkbookFunctionsPriceMatRequest {
|
||||
return &WorkbookFunctionsPriceMatRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func (r *WorkbookFunctionsPriceMatRequest) Post(ctx context.Context) (resObj *WorkbookFunctionResult, err error) {
|
||||
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
|
||||
return
|
||||
}
|
Reference in New Issue
Block a user