Class: AsposeSlidesCloud::Axes

Inherits:
BaseObject show all
Defined in:
lib/aspose_slides_cloud/models/axes.rb

Overview

Represents chart axes

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseObject

#_deserialize, #_to_hash, #build_from_hash, #to_body, #to_hash, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ Axes

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



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_axisObject

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_axisObject

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_axisObject

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_axisObject

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_mapObject

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_typesObject

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.

Parameters:

  • Object (Object)

    to be compared



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

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


111
112
113
# File 'lib/aspose_slides_cloud/models/axes.rb', line 111

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



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_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



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

Returns:

  • (Boolean)

    true if the model is valid



94
95
96
# File 'lib/aspose_slides_cloud/models/axes.rb', line 94

def valid?
  true
end