Class: Latitude::API::Objects::Tag
- Defined in:
- lib/latitude/api/objects.rb
Constant Summary
Constants inherited from APIObject
Instance Attribute Summary collapse
- #color ⇒ String readonly
- #description ⇒ String readonly
- #id ⇒ String readonly
- #name ⇒ String readonly
Attributes inherited from APIObject
Method Summary
Methods inherited from APIObject
#==, #[], #as_json, #each, #hash, #initialize, #inspect, #key?, #keys, #method_missing, #respond_to_missing?, #to_h, wrap
Methods included from Attributes::ClassMethods
Methods included from Attributes::InstanceMethods
#attribute_spec, #read_attribute, #wrap_attribute
Constructor Details
This class inherits a constructor from Latitude::API::APIObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Latitude::API::APIObject
Instance Attribute Details
#color ⇒ String (readonly)
118 119 120 121 122 123 |
# File 'lib/latitude/api/objects.rb', line 118 class Tag < APIObject attribute :id, :string, read_only: true attribute :name, :string, read_only: true attribute :description, :string, read_only: true attribute :color, :string, read_only: true end |
#description ⇒ String (readonly)
118 119 120 121 122 123 |
# File 'lib/latitude/api/objects.rb', line 118 class Tag < APIObject attribute :id, :string, read_only: true attribute :name, :string, read_only: true attribute :description, :string, read_only: true attribute :color, :string, read_only: true end |