forked from mailslurp/mailslurp-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_alias.go
More file actions
24 lines (23 loc) · 1004 Bytes
/
model_alias.go
File metadata and controls
24 lines (23 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* 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://www.mailslurp.com/docs/) - [Examples](https://github.com/mailslurp/examples) repository
*
* API version: 6.5.2
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package MailSlurpClient
import (
"time"
)
// Alias struct for Alias
type Alias struct {
CreatedAt time.Time `json:"createdAt"`
EmailAddress string `json:"emailAddress"`
Id string `json:"id,omitempty"`
InboxId string `json:"inboxId,omitempty"`
Name string `json:"name,omitempty"`
Proxied bool `json:"proxied,omitempty"`
UpdatedAt time.Time `json:"updatedAt"`
UserId string `json:"userId,omitempty"`
}