Class: GetTestMail
Instance Attribute Summary collapse
-
#emailAddress ⇒ Object
Returns the value of attribute emailAddress.
-
#expiresAt ⇒ Object
Returns the value of attribute expiresAt.
-
#id ⇒ Object
Returns the value of attribute id.
-
#message ⇒ Object
Returns the value of attribute message.
Instance Method Summary collapse
-
#initialize(json) ⇒ GetTestMail
constructor
A new instance of GetTestMail.
Methods inherited from BaseDTO
Constructor Details
#initialize(json) ⇒ GetTestMail
Returns a new instance of GetTestMail.
7 8 9 10 11 12 13 |
# File 'lib/models/get_test_mail.rb', line 7 def initialize(json) super(json) if @message @message = Message.new(@message) end end |
Instance Attribute Details
#emailAddress ⇒ Object
Returns the value of attribute emailAddress.
5 6 7 |
# File 'lib/models/get_test_mail.rb', line 5 def emailAddress @emailAddress end |
#expiresAt ⇒ Object
Returns the value of attribute expiresAt.
5 6 7 |
# File 'lib/models/get_test_mail.rb', line 5 def expiresAt @expiresAt end |
#id ⇒ Object
Returns the value of attribute id.
5 6 7 |
# File 'lib/models/get_test_mail.rb', line 5 def id @id end |
#message ⇒ Object
Returns the value of attribute message.
5 6 7 |
# File 'lib/models/get_test_mail.rb', line 5 def @message end |