Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/corepro/account.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ class Account < Models::ModelBase
attr_accessor :accountNumberMasked
attr_accessor :legalName1
attr_accessor :legalName2
attr_accessor :externalProgramTag
attr_accessor :interestTransferFkId
attr_accessor :productId

# link related
attr_accessor :sourceLinks
attr_accessor :targetLinks

# state related
attr_accessor :status
Expand All @@ -25,7 +32,10 @@ class Account < Models::ModelBase
attr_accessor :closedDate
attr_accessor :isPrimary
attr_accessor :isCloseable
attr_accessor :isLocked
attr_accessor :lockReasonTypeCode
attr_accessor :lastModifiedDate
attr_accessor :globalAccountAccessEnabled

# goal related
attr_accessor :targetAmount
Expand All @@ -34,12 +44,14 @@ class Account < Models::ModelBase
attr_accessor :targetMetPercent
attr_accessor :category
attr_accessor :subCategory
attr_accessor :maturityTypeCode

# balance related
attr_accessor :availableBalance
attr_accessor :accountBalance
attr_accessor :pendingBalance
attr_accessor :balanceLastModifiedDate
attr_accessor :regDWithdrawalCount

# recurring deposit related
attr_accessor :recurringContributionType
Expand Down
2 changes: 1 addition & 1 deletion lib/corepro/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/ruby -w
module CorePro
VERSION = '1.0.1'
VERSION = '1.0.2'
end