-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodel_alias_projection.go
25 lines (24 loc) · 1.04 KB
/
model_alias_projection.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
/*
* MailSlurp API
*
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. 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: [email protected]
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package MailSlurpClient
import (
"time"
)
// AliasProjection Representation of a alias
type AliasProjection struct {
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
UserId string `json:"userId"`
EmailAddress string `json:"emailAddress"`
InboxId string `json:"inboxId"`
UseThreads bool `json:"useThreads,omitempty"`
Name string `json:"name,omitempty"`
Id string `json:"id"`
}