mirror of
https://github.com/LukeHagar/log10go.git
synced 2025-12-06 20:47:44 +00:00
15 lines
304 B
Go
15 lines
304 B
Go
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
package components
|
|
|
|
type Security struct {
|
|
Log10Token *string `security:"scheme,type=apiKey,subtype=header,name=X-Log10-Token"`
|
|
}
|
|
|
|
func (o *Security) GetLog10Token() *string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.Log10Token
|
|
}
|