Class: Files::AccountLineItem
- Inherits:
-
Object
- Object
- Files::AccountLineItem
- Defined in:
- lib/files.com/models/account_line_item.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#amount ⇒ Object
double - Line item amount.
-
#balance ⇒ Object
double - Line item balance.
-
#created_at ⇒ Object
date-time - Line item created at.
-
#currency ⇒ Object
string - Line item currency.
-
#download_uri ⇒ Object
string - Line item download uri.
-
#id ⇒ Object
int64 - Line item Id.
-
#initialize(attributes = {}, options = {}) ⇒ AccountLineItem
constructor
A new instance of AccountLineItem.
-
#invoice_line_items ⇒ Object
array(object) - Associated invoice line items.
-
#method ⇒ Object
string - Line item payment method.
-
#payment_line_items ⇒ Object
array(object) - Associated payment line items.
-
#payment_reversed_at ⇒ Object
date-time - Date/time payment was reversed if applicable.
-
#payment_type ⇒ Object
string - Type of payment if applicable.
-
#site_name ⇒ Object
string - Site name this line item is for.
-
#type ⇒ Object
string - Type of line item, either payment or invoice.
Constructor Details
#initialize(attributes = {}, options = {}) ⇒ AccountLineItem
Returns a new instance of AccountLineItem.
7 8 9 10 |
# File 'lib/files.com/models/account_line_item.rb', line 7 def initialize(attributes = {}, = {}) @attributes = attributes || {} @options = || {} end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
5 6 7 |
# File 'lib/files.com/models/account_line_item.rb', line 5 def attributes @attributes end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
5 6 7 |
# File 'lib/files.com/models/account_line_item.rb', line 5 def @options end |
Instance Method Details
#amount ⇒ Object
double - Line item amount
18 19 20 |
# File 'lib/files.com/models/account_line_item.rb', line 18 def amount @attributes[:amount] end |
#balance ⇒ Object
double - Line item balance
23 24 25 |
# File 'lib/files.com/models/account_line_item.rb', line 23 def balance @attributes[:balance] end |
#created_at ⇒ Object
date-time - Line item created at
28 29 30 |
# File 'lib/files.com/models/account_line_item.rb', line 28 def created_at @attributes[:created_at] end |
#currency ⇒ Object
string - Line item currency
33 34 35 |
# File 'lib/files.com/models/account_line_item.rb', line 33 def currency @attributes[:currency] end |
#download_uri ⇒ Object
string - Line item download uri
38 39 40 |
# File 'lib/files.com/models/account_line_item.rb', line 38 def download_uri @attributes[:download_uri] end |
#id ⇒ Object
int64 - Line item Id
13 14 15 |
# File 'lib/files.com/models/account_line_item.rb', line 13 def id @attributes[:id] end |
#invoice_line_items ⇒ Object
array(object) - Associated invoice line items
43 44 45 |
# File 'lib/files.com/models/account_line_item.rb', line 43 def invoice_line_items @attributes[:invoice_line_items] end |
#method ⇒ Object
string - Line item payment method
48 49 50 |
# File 'lib/files.com/models/account_line_item.rb', line 48 def method @attributes[:method] end |
#payment_line_items ⇒ Object
array(object) - Associated payment line items
53 54 55 |
# File 'lib/files.com/models/account_line_item.rb', line 53 def payment_line_items @attributes[:payment_line_items] end |
#payment_reversed_at ⇒ Object
date-time - Date/time payment was reversed if applicable
58 59 60 |
# File 'lib/files.com/models/account_line_item.rb', line 58 def payment_reversed_at @attributes[:payment_reversed_at] end |
#payment_type ⇒ Object
string - Type of payment if applicable
63 64 65 |
# File 'lib/files.com/models/account_line_item.rb', line 63 def payment_type @attributes[:payment_type] end |
#site_name ⇒ Object
string - Site name this line item is for
68 69 70 |
# File 'lib/files.com/models/account_line_item.rb', line 68 def site_name @attributes[:site_name] end |
#type ⇒ Object
string - Type of line item, either payment or invoice
73 74 75 |
# File 'lib/files.com/models/account_line_item.rb', line 73 def type @attributes[:type] end |