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

package components

type ScadaView struct {
	Description *string `json:"description,omitempty"`
	Title       *string `json:"title,omitempty"`
}

func (o *ScadaView) GetDescription() *string {
	if o == nil {
		return nil
	}
	return o.Description
}

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