Class: ZohoSdk::Analytics::Column
- Inherits:
-
Object
- Object
- ZohoSdk::Analytics::Column
- Defined in:
- lib/zoho-sdk/analytics/column.rb
Constant Summary collapse
- DATA_TYPES =
{ "Auto" => :system, "Plain Text" => :plain, "E-Mail" => :email, "Multi Line Text" => :multi, "URL" => :url, "Number" => :number, "Auto Number" => :auto_number, "Positive Number" => :positive_number, "Decimal Number" => :decimal_number, "Currency" => :currency, "Percentage" => :percentage, "Date" => :date, "Yes/No Decision" => :boolean }.freeze
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#table ⇒ Object
readonly
Returns the value of attribute table.
Instance Method Summary collapse
-
#initialize(name, table, client) ⇒ Column
constructor
A new instance of Column.
Constructor Details
#initialize(name, table, client) ⇒ Column
Returns a new instance of Column.
21 22 23 24 25 |
# File 'lib/zoho-sdk/analytics/column.rb', line 21 def initialize(name, table, client) @name = name @table = table @client = client end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
19 20 21 |
# File 'lib/zoho-sdk/analytics/column.rb', line 19 def name @name end |
#table ⇒ Object (readonly)
Returns the value of attribute table.
19 20 21 |
# File 'lib/zoho-sdk/analytics/column.rb', line 19 def table @table end |