ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.314.2

This commit is contained in:
speakeasybot
2024-06-24 00:12:47 +00:00
parent 65b44423c6
commit a92dc392e7
27 changed files with 68 additions and 67 deletions

View File

@@ -7,12 +7,12 @@ import (
)
type CreateGlobals struct {
XLog10Organization string `header:"style=simple,explode=false,name=X-Log10-Organization"`
XLog10Organization *string `header:"style=simple,explode=false,name=X-Log10-Organization"`
}
func (o *CreateGlobals) GetXLog10Organization() string {
func (o *CreateGlobals) GetXLog10Organization() *string {
if o == nil {
return ""
return nil
}
return o.XLog10Organization
}