Class: Hws::Connectors::Dto::AccountDetail
- Inherits:
-
Object
- Object
- Hws::Connectors::Dto::AccountDetail
- Defined in:
- lib/hws-connectors/dto/common/account_detail.rb
Instance Attribute Summary collapse
-
#account_ifsc ⇒ Object
Returns the value of attribute account_ifsc.
-
#account_number ⇒ Object
Returns the value of attribute account_number.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#name ⇒ Object
Returns the value of attribute name.
-
#note ⇒ Object
Returns the value of attribute note.
-
#updated_at ⇒ Object
Returns the value of attribute updated_at.
-
#upi_id ⇒ Object
Returns the value of attribute upi_id.
Instance Method Summary collapse
-
#initialize(name: nil, account_number: nil, account_ifsc: nil, upi_id: nil, note: nil, created_at: nil, updated_at: nil) ⇒ AccountDetail
constructor
A new instance of AccountDetail.
Constructor Details
#initialize(name: nil, account_number: nil, account_ifsc: nil, upi_id: nil, note: nil, created_at: nil, updated_at: nil) ⇒ AccountDetail
Returns a new instance of AccountDetail.
4 5 6 7 8 9 10 11 12 |
# File 'lib/hws-connectors/dto/common/account_detail.rb', line 4 def initialize(name: nil, account_number: nil, account_ifsc: nil, upi_id: nil, note: nil, created_at: nil, updated_at: nil) @name = name @account_number = account_number @account_ifsc = account_ifsc @upi_id = upi_id @note = note @created_at = created_at @updated_at = updated_at end |
Instance Attribute Details
#account_ifsc ⇒ Object
Returns the value of attribute account_ifsc.
2 3 4 |
# File 'lib/hws-connectors/dto/common/account_detail.rb', line 2 def account_ifsc @account_ifsc end |
#account_number ⇒ Object
Returns the value of attribute account_number.
2 3 4 |
# File 'lib/hws-connectors/dto/common/account_detail.rb', line 2 def account_number @account_number end |
#created_at ⇒ Object
Returns the value of attribute created_at.
2 3 4 |
# File 'lib/hws-connectors/dto/common/account_detail.rb', line 2 def created_at @created_at end |
#name ⇒ Object
Returns the value of attribute name.
2 3 4 |
# File 'lib/hws-connectors/dto/common/account_detail.rb', line 2 def name @name end |
#note ⇒ Object
Returns the value of attribute note.
2 3 4 |
# File 'lib/hws-connectors/dto/common/account_detail.rb', line 2 def note @note end |
#updated_at ⇒ Object
Returns the value of attribute updated_at.
2 3 4 |
# File 'lib/hws-connectors/dto/common/account_detail.rb', line 2 def updated_at @updated_at end |
#upi_id ⇒ Object
Returns the value of attribute upi_id.
2 3 4 |
# File 'lib/hws-connectors/dto/common/account_detail.rb', line 2 def upi_id @upi_id end |