-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmodel_alias_thread_projection.go
More file actions
39 lines (38 loc) · 1.37 KB
/
model_alias_thread_projection.go
File metadata and controls
39 lines (38 loc) · 1.37 KB
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
29
30
31
32
33
34
35
36
37
38
39
/*
* 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: contact@mailslurp.dev
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package MailSlurpClient
import (
"time"
)
// AliasThreadProjection A thread is a message thread created for a message received by an alias
type AliasThreadProjection struct {
// Name of thread
Name string `json:"name,omitempty"`
// ID of email thread
Id string `json:"id"`
// Thread subject
Subject string `json:"subject,omitempty"`
// User ID
UserId string `json:"userId"`
// Inbox ID
InboxId string `json:"inboxId"`
// Updated at DateTime
UpdatedAt time.Time `json:"updatedAt"`
// Created at DateTime
CreatedAt time.Time `json:"createdAt"`
// To recipients
To []string `json:"to"`
// CC recipients
Cc []string `json:"cc,omitempty"`
// BCC recipients
Bcc []string `json:"bcc,omitempty"`
// Alias ID
AliasId string `json:"aliasId"`
}