Class: AsposeSlidesCloud::Axes
- Inherits:
-
BaseObject
- Object
- BaseObject
- AsposeSlidesCloud::Axes
- Defined in:
- lib/aspose_slides_cloud/models/axes.rb
Overview
Represents chart axes
Instance Attribute Summary collapse
-
#horizontal_axis ⇒ Object
Gets or sets the horizontal axis.
-
#secondary_horizontal_axis ⇒ Object
Gets or sets the secondary horizontal axis.
-
#secondary_vertical_axis ⇒ Object
Gets or sets the secondary vertical axis.
-
#vertical_axis ⇒ Object
Gets or sets the vertical axis.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ Axes
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Methods inherited from BaseObject
#_deserialize, #_to_hash, #build_from_hash, #to_body, #to_hash, #to_s
Constructor Details
#initialize(attributes = {}) ⇒ Axes
Initializes the object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 62 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'HorizontalAxis') self.horizontal_axis = attributes[:'HorizontalAxis'] end if attributes.has_key?(:'VerticalAxis') self.vertical_axis = attributes[:'VerticalAxis'] end if attributes.has_key?(:'SecondaryHorizontalAxis') self.secondary_horizontal_axis = attributes[:'SecondaryHorizontalAxis'] end if attributes.has_key?(:'SecondaryVerticalAxis') self.secondary_vertical_axis = attributes[:'SecondaryVerticalAxis'] end end |
Instance Attribute Details
#horizontal_axis ⇒ Object
Gets or sets the horizontal axis.
29 30 31 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 29 def horizontal_axis @horizontal_axis end |
#secondary_horizontal_axis ⇒ Object
Gets or sets the secondary horizontal axis.
35 36 37 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 35 def secondary_horizontal_axis @secondary_horizontal_axis end |
#secondary_vertical_axis ⇒ Object
Gets or sets the secondary vertical axis.
38 39 40 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 38 def secondary_vertical_axis @secondary_vertical_axis end |
#vertical_axis ⇒ Object
Gets or sets the vertical axis.
32 33 34 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 32 def vertical_axis @vertical_axis end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
41 42 43 44 45 46 47 48 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 41 def self.attribute_map { :'horizontal_axis' => :'HorizontalAxis', :'vertical_axis' => :'VerticalAxis', :'secondary_horizontal_axis' => :'SecondaryHorizontalAxis', :'secondary_vertical_axis' => :'SecondaryVerticalAxis', } end |
.swagger_types ⇒ Object
Attribute type mapping.
51 52 53 54 55 56 57 58 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 51 def self.swagger_types { :'horizontal_axis' => :'Axis', :'vertical_axis' => :'Axis', :'secondary_horizontal_axis' => :'Axis', :'secondary_vertical_axis' => :'Axis', } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
100 101 102 103 104 105 106 107 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 100 def ==(o) return true if self.equal?(o) self.class == o.class && horizontal_axis == o.horizontal_axis && vertical_axis == o.vertical_axis && secondary_horizontal_axis == o.secondary_horizontal_axis && secondary_vertical_axis == o.secondary_vertical_axis end |
#eql?(o) ⇒ Boolean
111 112 113 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 111 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
117 118 119 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 117 def hash [horizontal_axis, vertical_axis, secondary_horizontal_axis, secondary_vertical_axis].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
87 88 89 90 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 87 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
94 95 96 |
# File 'lib/aspose_slides_cloud/models/axes.rb', line 94 def valid? true end |