ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.133.1

This commit is contained in:
speakeasybot
2024-01-05 19:39:51 +00:00
parent a3977251ef
commit 4171fb7659
455 changed files with 24819 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
package operations
import (
"net/http"
)
type EnablePaperTrailResponse struct {
// HTTP response content type for this operation
ContentType string
// HTTP response status code for this operation
StatusCode int
// Raw HTTP response; suitable for custom response parsing
RawResponse *http.Response
}
func (o *EnablePaperTrailResponse) GetContentType() string {
if o == nil {
return ""
}
return o.ContentType
}
func (o *EnablePaperTrailResponse) GetStatusCode() int {
if o == nil {
return 0
}
return o.StatusCode
}
func (o *EnablePaperTrailResponse) GetRawResponse() *http.Response {
if o == nil {
return nil
}
return o.RawResponse
}