mailslurp_client 11.9.1 → 11.9.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 297d85713ff3b1fdeb33ce6728cffea626b36403700dc880d3ae1716449a825d
|
4
|
+
data.tar.gz: 2f4cec607f824edada339c37c2f47a45cc23316912745eeced2eb5d758384f0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1748155562fbf377d704ca6841d830b11d00b64f61e7e2783f98e06072316d2e3948e0e919b14786c7b20a1334fd3f632735db17c5fcd351c2b03d67c7d701f
|
7
|
+
data.tar.gz: 11c8d5a255e8b77c3dc4eea6739a2ee4e1455ee8a54616afc439cdfb5b9b4cea796c83db7f58def988d0632342c9038af26aa75a82130762434d1c60e2a7f6ba
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.3.1
|
|
13
13
|
require 'date'
|
14
14
|
|
15
15
|
module MailSlurpClient
|
16
|
-
# Representation of
|
16
|
+
# Representation of a MailSlurp inbox. An inbox has an ID and a real email address. Emails can be sent to or from this email address. Use the `EmailController` or the `InboxController` methods to send and receive emails and attachments.
|
17
17
|
class Inbox
|
18
18
|
# When the inbox was created. Time stamps are in ISO DateTime Format `yyyy-MM-dd'T'HH:mm:ss.SSSXXX` e.g. `2000-10-31T01:30:00.000-05:00`.
|
19
19
|
attr_accessor :created_at
|
@@ -36,13 +36,13 @@ module MailSlurpClient
|
|
36
36
|
# Name of the inbox. Displayed in the dashboard for easier search
|
37
37
|
attr_accessor :name
|
38
38
|
|
39
|
-
# Is the inbox readOnly for the caller. Read only means can not be deleted or modified.
|
39
|
+
# Is the inbox readOnly for the caller. Read only means can not be deleted or modified. This flag is present when using team accounts and shared inboxes.
|
40
40
|
attr_accessor :read_only
|
41
41
|
|
42
42
|
# Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.
|
43
43
|
attr_accessor :tags
|
44
44
|
|
45
|
-
# Does inbox permit team access for organization team members. If so team users can use inbox and emails associated with it.
|
45
|
+
# Does inbox permit team access for organization team members. If so team users can use inbox and emails associated with it. See the team access guide at https://www.mailslurp.com/guides/team-email-account-sharing/
|
46
46
|
attr_accessor :team_access
|
47
47
|
|
48
48
|
# ID of user that inbox belongs to
|
@@ -29,13 +29,13 @@ module MailSlurpClient
|
|
29
29
|
# Name of the inbox. Displayed in the dashboard for easier search
|
30
30
|
attr_accessor :name
|
31
31
|
|
32
|
-
# Is the inbox readOnly for the caller. Read only means can not be deleted or modified.
|
32
|
+
# Is the inbox readOnly for the caller. Read only means can not be deleted or modified. This flag is present when using team accounts and shared inboxes.
|
33
33
|
attr_accessor :read_only
|
34
34
|
|
35
35
|
# Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.
|
36
36
|
attr_accessor :tags
|
37
37
|
|
38
|
-
# Does inbox permit team access for organization team members. If so team users can use inbox and emails associated with it.
|
38
|
+
# Does inbox permit team access for organization team members. If so team users can use inbox and emails associated with it. See the team access guide at https://www.mailslurp.com/guides/team-email-account-sharing/
|
39
39
|
attr_accessor :team_access
|
40
40
|
|
41
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|