Class: Latitude::API::Resources::Plan::Drive
- Defined in:
- lib/latitude/api/resources/plan.rb
Constant Summary
Constants inherited from APIObject
Instance Attribute Summary collapse
- #count ⇒ Integer readonly
- #size ⇒ String readonly
- #type ⇒ 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
#count ⇒ Integer (readonly)
44 45 46 47 48 |
# File 'lib/latitude/api/resources/plan.rb', line 44 class Drive < APIObject attribute :count, :integer, read_only: true attribute :size, :string, read_only: true attribute :type, :string, read_only: true end |
#size ⇒ String (readonly)
44 45 46 47 48 |
# File 'lib/latitude/api/resources/plan.rb', line 44 class Drive < APIObject attribute :count, :integer, read_only: true attribute :size, :string, read_only: true attribute :type, :string, read_only: true end |
#type ⇒ String (readonly)
44 45 46 47 48 |
# File 'lib/latitude/api/resources/plan.rb', line 44 class Drive < APIObject attribute :count, :integer, read_only: true attribute :size, :string, read_only: true attribute :type, :string, read_only: true end |