class TencentCloud::Tiia::V20190529::CarTagItem
车辆属性识别的结果
def deserialize(params)
def deserialize(params) @Serial = params['Serial'] @Brand = params['Brand'] @Type = params['Type'] @Color = params['Color'] @Confidence = params['Confidence'] @Year = params['Year'] unless params['CarLocation'].nil? @CarLocation = [] params['CarLocation'].each do |i| coord_tmp = Coord.new coord_tmp.deserialize(i) @CarLocation << coord_tmp end end unless params['PlateContent'].nil? @PlateContent = CarPlateContent.new @PlateContent.deserialize(params['PlateContent']) end end
def initialize(serial=nil, brand=nil, type=nil, color=nil, confidence=nil, year=nil, carlocation=nil, platecontent=nil)
def initialize(serial=nil, brand=nil, type=nil, color=nil, confidence=nil, year=nil, carlocation=nil, platecontent=nil) @Serial = serial @Brand = brand @Type = type @Color = color @Confidence = confidence @Year = year @CarLocation = carlocation @PlateContent = platecontent end