Class: Mailtrap::InboundInbox
- Inherits:
-
Struct
- Object
- Struct
- Mailtrap::InboundInbox
- Defined in:
- lib/mailtrap/inbound_inbox.rb
Overview
Data Transfer Object for an inbound inbox
Instance Attribute Summary collapse
-
#address ⇒ String
readonly
The inbox's inbound address.
-
#domain_id ⇒ Integer
readonly
The sending domain the inbox is attached to.
-
#id ⇒ Integer
readonly
The inbox ID.
-
#name ⇒ String
readonly
The inbox name.
Instance Attribute Details
#address ⇒ String (readonly)
The inbox's inbound address
10 11 12 |
# File 'lib/mailtrap/inbound_inbox.rb', line 10 def address @address end |
#domain_id ⇒ Integer (readonly)
The sending domain the inbox is attached to
10 11 12 |
# File 'lib/mailtrap/inbound_inbox.rb', line 10 def domain_id @domain_id end |
#id ⇒ Integer (readonly)
The inbox ID
10 11 12 |
# File 'lib/mailtrap/inbound_inbox.rb', line 10 def id @id end |
#name ⇒ String (readonly)
The inbox name
10 11 12 |
# File 'lib/mailtrap/inbound_inbox.rb', line 10 def name @name end |