github.com/go-email-validator/go-email-validator@v0.0.0-20230409163946-b8b9e6a0552e/pkg/presentation/as-email-verifier/smtp.go (about)

     1  package asemailverifier
     2  
     3  // SMTPPresentation for smtp validator
     4  type SMTPPresentation struct {
     5  	HostExists  bool `json:"host_exists"`
     6  	FullInbox   bool `json:"full_inbox"`
     7  	CatchAll    bool `json:"catch_all"`
     8  	Deliverable bool `json:"deliverable"`
     9  	Disabled    bool `json:"disabled"`
    10  }