forked from lug/matterbridge
Update vendor yaegashi/msgraph.go to v0.1.2 (2)
This commit is contained in:
97
vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go
generated
vendored
Normal file
97
vendor/github.com/yaegashi/msgraph.go/beta/RequestJournal.go
generated
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||||
|
||||
package msgraph
|
||||
|
||||
import "context"
|
||||
|
||||
// JournalRequestBuilder is request builder for Journal
|
||||
type JournalRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// Request returns JournalRequest
|
||||
func (b *JournalRequestBuilder) Request() *JournalRequest {
|
||||
return &JournalRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
|
||||
}
|
||||
}
|
||||
|
||||
// JournalRequest is request for Journal
|
||||
type JournalRequest struct{ BaseRequest }
|
||||
|
||||
// Get performs GET request for Journal
|
||||
func (r *JournalRequest) Get(ctx context.Context) (resObj *Journal, err error) {
|
||||
var query string
|
||||
if r.query != nil {
|
||||
query = "?" + r.query.Encode()
|
||||
}
|
||||
err = r.JSONRequest(ctx, "GET", query, nil, &resObj)
|
||||
return
|
||||
}
|
||||
|
||||
// Update performs PATCH request for Journal
|
||||
func (r *JournalRequest) Update(ctx context.Context, reqObj *Journal) error {
|
||||
return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
|
||||
}
|
||||
|
||||
// Delete performs DELETE request for Journal
|
||||
func (r *JournalRequest) Delete(ctx context.Context) error {
|
||||
return r.JSONRequest(ctx, "DELETE", "", nil, nil)
|
||||
}
|
||||
|
||||
// JournalLineRequestBuilder is request builder for JournalLine
|
||||
type JournalLineRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// Request returns JournalLineRequest
|
||||
func (b *JournalLineRequestBuilder) Request() *JournalLineRequest {
|
||||
return &JournalLineRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client},
|
||||
}
|
||||
}
|
||||
|
||||
// JournalLineRequest is request for JournalLine
|
||||
type JournalLineRequest struct{ BaseRequest }
|
||||
|
||||
// Get performs GET request for JournalLine
|
||||
func (r *JournalLineRequest) Get(ctx context.Context) (resObj *JournalLine, err error) {
|
||||
var query string
|
||||
if r.query != nil {
|
||||
query = "?" + r.query.Encode()
|
||||
}
|
||||
err = r.JSONRequest(ctx, "GET", query, nil, &resObj)
|
||||
return
|
||||
}
|
||||
|
||||
// Update performs PATCH request for JournalLine
|
||||
func (r *JournalLineRequest) Update(ctx context.Context, reqObj *JournalLine) error {
|
||||
return r.JSONRequest(ctx, "PATCH", "", reqObj, nil)
|
||||
}
|
||||
|
||||
// Delete performs DELETE request for JournalLine
|
||||
func (r *JournalLineRequest) Delete(ctx context.Context) error {
|
||||
return r.JSONRequest(ctx, "DELETE", "", nil, nil)
|
||||
}
|
||||
|
||||
//
|
||||
type JournalPostRequestBuilder struct{ BaseRequestBuilder }
|
||||
|
||||
// Post action undocumented
|
||||
func (b *JournalRequestBuilder) Post(reqObj *JournalPostRequestParameter) *JournalPostRequestBuilder {
|
||||
bb := &JournalPostRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
|
||||
bb.BaseRequestBuilder.baseURL += "/post"
|
||||
bb.BaseRequestBuilder.requestObject = reqObj
|
||||
return bb
|
||||
}
|
||||
|
||||
//
|
||||
type JournalPostRequest struct{ BaseRequest }
|
||||
|
||||
//
|
||||
func (b *JournalPostRequestBuilder) Request() *JournalPostRequest {
|
||||
return &JournalPostRequest{
|
||||
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
func (r *JournalPostRequest) Post(ctx context.Context) error {
|
||||
return r.JSONRequest(ctx, "POST", "", r.requestObject, nil)
|
||||
}
|
||||
Reference in New Issue
Block a user