mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 03:18:53 +00:00
98 lines
2.6 KiB
Ruby
98 lines
2.6 KiB
Ruby
|
class Order
|
||
|
attr_accessor :id, :pet_id, :status, :quantity, :ship_date
|
||
|
|
||
|
# :internal => :external
|
||
|
def self.attribute_map
|
||
|
{
|
||
|
:id => :id, :pet_id => :petId, :status => :status, :quantity => :quantity, :ship_date => :shipDate
|
||
|
|
||
|
}
|
||
|
end
|
||
|
|
||
|
def initialize(attributes = {})
|
||
|
# Morph attribute keys into undescored rubyish style
|
||
|
if attributes.to_s != ""
|
||
|
|
||
|
if Order.attribute_map["id".to_sym] != nil
|
||
|
name = "id".to_sym
|
||
|
value = attributes["id"]
|
||
|
|
||
|
if value.is_a?(Array)
|
||
|
array = Array.new
|
||
|
value.each do |arrayValue|
|
||
|
array.push arrayValue
|
||
|
end
|
||
|
send("#{name}=", array) if self.respond_to?(name)
|
||
|
else
|
||
|
send("#{name}=", value) if self.respond_to?(name)
|
||
|
end
|
||
|
end
|
||
|
if Order.attribute_map["pet_id".to_sym] != nil
|
||
|
name = "pet_id".to_sym
|
||
|
value = attributes["petId"]
|
||
|
|
||
|
if value.is_a?(Array)
|
||
|
array = Array.new
|
||
|
value.each do |arrayValue|
|
||
|
array.push arrayValue
|
||
|
end
|
||
|
send("#{name}=", array) if self.respond_to?(name)
|
||
|
else
|
||
|
send("#{name}=", value) if self.respond_to?(name)
|
||
|
end
|
||
|
end
|
||
|
if Order.attribute_map["status".to_sym] != nil
|
||
|
name = "status".to_sym
|
||
|
value = attributes["status"]
|
||
|
|
||
|
if value.is_a?(Array)
|
||
|
array = Array.new
|
||
|
value.each do |arrayValue|
|
||
|
array.push arrayValue
|
||
|
end
|
||
|
send("#{name}=", array) if self.respond_to?(name)
|
||
|
else
|
||
|
send("#{name}=", value) if self.respond_to?(name)
|
||
|
end
|
||
|
end
|
||
|
if Order.attribute_map["quantity".to_sym] != nil
|
||
|
name = "quantity".to_sym
|
||
|
value = attributes["quantity"]
|
||
|
|
||
|
if value.is_a?(Array)
|
||
|
array = Array.new
|
||
|
value.each do |arrayValue|
|
||
|
array.push arrayValue
|
||
|
end
|
||
|
send("#{name}=", array) if self.respond_to?(name)
|
||
|
else
|
||
|
send("#{name}=", value) if self.respond_to?(name)
|
||
|
end
|
||
|
end
|
||
|
if Order.attribute_map["ship_date".to_sym] != nil
|
||
|
name = "ship_date".to_sym
|
||
|
value = attributes["shipDate"]
|
||
|
|
||
|
if value.is_a?(Array)
|
||
|
array = Array.new
|
||
|
value.each do |arrayValue|
|
||
|
array.push Date.new(arrayValue)
|
||
|
end
|
||
|
send("#{name}=", array) if self.respond_to?(name)
|
||
|
else
|
||
|
send("#{name}=", value) if self.respond_to?(name)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def to_body
|
||
|
body = {}
|
||
|
Order.attribute_map.each_pair do |key,value|
|
||
|
body[value] = self.send(key) unless self.send(key).nil?
|
||
|
end
|
||
|
body
|
||
|
end
|
||
|
end
|
||
|
|