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

package components

type Telnet struct {
	Do   map[string]*string `json:"do,omitempty"`
	Dont map[string]*string `json:"dont,omitempty"`
	Will map[string]*string `json:"will,omitempty"`
	Wont map[string]*string `json:"wont,omitempty"`
}

func (o *Telnet) GetDo() map[string]*string {
	if o == nil {
		return nil
	}
	return o.Do
}

func (o *Telnet) GetDont() map[string]*string {
	if o == nil {
		return nil
	}
	return o.Dont
}

func (o *Telnet) GetWill() map[string]*string {
	if o == nil {
		return nil
	}
	return o.Will
}

func (o *Telnet) GetWont() map[string]*string {
	if o == nil {
		return nil
	}
	return o.Wont
}
