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

package components

type SMTP struct {
	// The server's response to the EHLO command.
	Ehlo *string `json:"ehlo,omitempty"`
	// The server's response to the STARTTLS command.
	StartTLS *string `json:"start_tls,omitempty"`
}

func (o *SMTP) GetEhlo() *string {
	if o == nil {
		return nil
	}
	return o.Ehlo
}

func (o *SMTP) GetStartTLS() *string {
	if o == nil {
		return nil
	}
	return o.StartTLS
}
