mirror of
https://github.com/LukeHagar/log10go.git
synced 2025-12-06 04:20:12 +00:00
16 lines
278 B
Go
16 lines
278 B
Go
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
|
|
|
package components
|
|
|
|
type Session struct {
|
|
// The unique identifier for this session.
|
|
ID *string `json:"id,omitempty"`
|
|
}
|
|
|
|
func (o *Session) GetID() *string {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.ID
|
|
}
|