Class: AsposeBarcodeCloud::BarcodeBuildersList

Inherits:
BaseObject
  • Object
show all
Defined in:
lib/aspose_barcode_cloud/models/barcode_builders_list.rb

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 = {}) ⇒ BarcodeBuildersList

Returns a new instance of BarcodeBuildersList.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/aspose_barcode_cloud/models/barcode_builders_list.rb', line 31

def initialize(attributes = {})
  return if !attributes.is_a?(Hash) || attributes.empty?

  # convert string to symbol for hash key
  attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo}

  
  if attributes[:'BarcodeBuilders']
    if (value = attributes[:'BarcodeBuilders']).is_a?(Array)
      self.barcode_builders = value
    end
  end
  
  if attributes[:'XStep']
    self.x_step = attributes[:'XStep']
  end
  
  if attributes[:'YStep']
    self.y_step = attributes[:'YStep']
  end
  
end

Instance Attribute Details

#barcode_buildersObject

Returns the value of attribute barcode_builders.



4
5
6
# File 'lib/aspose_barcode_cloud/models/barcode_builders_list.rb', line 4

def barcode_builders
  @barcode_builders
end

#x_stepObject

Returns the value of attribute x_step.



4
5
6
# File 'lib/aspose_barcode_cloud/models/barcode_builders_list.rb', line 4

def x_step
  @x_step
end

#y_stepObject

Returns the value of attribute y_step.



4
5
6
# File 'lib/aspose_barcode_cloud/models/barcode_builders_list.rb', line 4

def y_step
  @y_step
end

Class Method Details

.attribute_mapObject

attribute mapping from ruby-style variable name to JSON key



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/aspose_barcode_cloud/models/barcode_builders_list.rb', line 6

def self.attribute_map
  {
    
    # 
    :'barcode_builders' => :'BarcodeBuilders',
    
    # 
    :'x_step' => :'XStep',
    
    # 
    :'y_step' => :'YStep'
    
  }
end

.swagger_typesObject

attribute type



22
23
24
25
26
27
28
29
# File 'lib/aspose_barcode_cloud/models/barcode_builders_list.rb', line 22

def self.swagger_types
  {
    :'barcode_builders' => :'Array<BarcodeBuilder>',
    :'x_step' => :'Integer',
    :'y_step' => :'Integer'
    
  }
end