Class: Latitude::API::Resources::Plan::USD
- Defined in:
- lib/latitude/api/resources/plan.rb
Constant Summary
Constants inherited from APIObject
Instance Attribute Summary collapse
- #hour ⇒ Integer readonly
- #month ⇒ Integer readonly
- #year ⇒ Integer 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
#hour ⇒ Integer (readonly)
107 108 109 110 111 |
# File 'lib/latitude/api/resources/plan.rb', line 107 class USD < APIObject attribute :hour, :integer, read_only: true attribute :month, :integer, read_only: true attribute :year, :integer, read_only: true end |
#month ⇒ Integer (readonly)
107 108 109 110 111 |
# File 'lib/latitude/api/resources/plan.rb', line 107 class USD < APIObject attribute :hour, :integer, read_only: true attribute :month, :integer, read_only: true attribute :year, :integer, read_only: true end |
#year ⇒ Integer (readonly)
107 108 109 110 111 |
# File 'lib/latitude/api/resources/plan.rb', line 107 class USD < APIObject attribute :hour, :integer, read_only: true attribute :month, :integer, read_only: true attribute :year, :integer, read_only: true end |