// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type RedlionWeb struct {
	EnhancedWebServer *bool    `json:"enhanced_web_server,omitempty"`
	LogNames          []string `json:"log_names,omitempty"`
	Title             *string  `json:"title,omitempty"`
}

func (o *RedlionWeb) GetEnhancedWebServer() *bool {
	if o == nil {
		return nil
	}
	return o.EnhancedWebServer
}

func (o *RedlionWeb) GetLogNames() []string {
	if o == nil {
		return nil
	}
	return o.LogNames
}

func (o *RedlionWeb) GetTitle() *string {
	if o == nil {
		return nil
	}
	return o.Title
}
