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

package components

type OpcUaLocalizedText struct {
	Flags  *int    `json:"flags,omitempty"`
	Locale *string `json:"locale,omitempty"`
	Text   *string `json:"text,omitempty"`
}

func (o *OpcUaLocalizedText) GetFlags() *int {
	if o == nil {
		return nil
	}
	return o.Flags
}

func (o *OpcUaLocalizedText) GetLocale() *string {
	if o == nil {
		return nil
	}
	return o.Locale
}

func (o *OpcUaLocalizedText) GetText() *string {
	if o == nil {
		return nil
	}
	return o.Text
}
