Class: Beanie::BankStatement
Instance Attribute Summary collapse
-
#bank_account_id ⇒ Object
Returns the value of attribute bank_account_id.
-
#document_id ⇒ Object
Returns the value of attribute document_id.
-
#end_date ⇒ Object
Returns the value of attribute end_date.
-
#id ⇒ Object
Returns the value of attribute id.
-
#start_date ⇒ Object
Returns the value of attribute start_date.
-
#upload_file ⇒ Object
Returns the value of attribute upload_file.
Instance Method Summary collapse
-
#initialize ⇒ BankStatement
constructor
Initialize instance variables.
Methods inherited from Api
all, build_url, #construct_path, delete, #extract, #field_name, find, get, #object_name, #populate, post, put, #save!, set_headers
Constructor Details
#initialize ⇒ BankStatement
Initialize instance variables
36 37 38 39 40 41 42 43 |
# File 'lib/beanie/bank_statement.rb', line 36 def initialize @id = nil @end_date = nil @start_date = nil @upload_file = nil @bank_account_id = nil @document_id = nil end |
Instance Attribute Details
#bank_account_id ⇒ Object
Returns the value of attribute bank_account_id.
32 33 34 |
# File 'lib/beanie/bank_statement.rb', line 32 def bank_account_id @bank_account_id end |
#document_id ⇒ Object
Returns the value of attribute document_id.
32 33 34 |
# File 'lib/beanie/bank_statement.rb', line 32 def document_id @document_id end |
#end_date ⇒ Object
Returns the value of attribute end_date.
32 33 34 |
# File 'lib/beanie/bank_statement.rb', line 32 def end_date @end_date end |
#id ⇒ Object
Returns the value of attribute id.
32 33 34 |
# File 'lib/beanie/bank_statement.rb', line 32 def id @id end |
#start_date ⇒ Object
Returns the value of attribute start_date.
32 33 34 |
# File 'lib/beanie/bank_statement.rb', line 32 def start_date @start_date end |
#upload_file ⇒ Object
Returns the value of attribute upload_file.
32 33 34 |
# File 'lib/beanie/bank_statement.rb', line 32 def upload_file @upload_file end |