class TencentCloud::Tiia::V20190529::CarPlateContent
车牌信息
def deserialize(params)
def deserialize(params) @Plate = params['Plate'] @Color = params['Color'] @Type = params['Type'] unless params['PlateLocation'].nil? @PlateLocation = [] params['PlateLocation'].each do |i| coord_tmp = Coord.new coord_tmp.deserialize(i) @PlateLocation << coord_tmp end end end
def initialize(plate=nil, color=nil, type=nil, platelocation=nil)
def initialize(plate=nil, color=nil, type=nil, platelocation=nil) @Plate = plate @Color = color @Type = type @PlateLocation = platelocation end