-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodel_connector_imap_connection_dto.go
28 lines (27 loc) · 1.23 KB
/
model_connector_imap_connection_dto.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* MailSlurp API
*
* MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
*
* API version: 6.5.2
* Contact: contact@mailslurp.dev
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package MailSlurpClient
import (
"time"
)
// ConnectorImapConnectionDto struct for ConnectorImapConnectionDto
type ConnectorImapConnectionDto struct {
ConnectorId string `json:"connectorId"`
ImapHost string `json:"imapHost,omitempty"`
ImapPort int32 `json:"imapPort,omitempty"`
ImapUsername string `json:"imapUsername,omitempty"`
ImapPassword string `json:"imapPassword,omitempty"`
ImapSsl bool `json:"imapSsl,omitempty"`
SelectFolder string `json:"selectFolder,omitempty"`
SearchTerms string `json:"searchTerms,omitempty"`
Enabled bool `json:"enabled,omitempty"`
CreatedAt time.Time `json:"createdAt"`
Id string `json:"id"`
}