Class: TencentCloud::Iss::V20230517::PlateContent
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::PlateContent
- Defined in:
- lib/v20230517/models.rb
Overview
AI车牌信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(plate = nil, color = nil, type = nil, location = nil) ⇒ PlateContent
constructor
A new instance of PlateContent.
Constructor Details
#initialize(plate = nil, color = nil, type = nil, location = nil) ⇒ PlateContent
Returns a new instance of PlateContent.
6225 6226 6227 6228 6229 6230 |
# File 'lib/v20230517/models.rb', line 6225 def initialize(plate=nil, color=nil, type=nil, location=nil) @Plate = plate @Color = color @Type = type @Location = location end |
Instance Attribute Details
#Color ⇒ Object
6223 6224 6225 |
# File 'lib/v20230517/models.rb', line 6223 def Color @Color end |
#Location ⇒ Object
6223 6224 6225 |
# File 'lib/v20230517/models.rb', line 6223 def Location @Location end |
#Plate ⇒ Object
6223 6224 6225 |
# File 'lib/v20230517/models.rb', line 6223 def Plate @Plate end |
#Type ⇒ Object
6223 6224 6225 |
# File 'lib/v20230517/models.rb', line 6223 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
6232 6233 6234 6235 6236 6237 6238 6239 6240 |
# File 'lib/v20230517/models.rb', line 6232 def deserialize(params) @Plate = params['Plate'] @Color = params['Color'] @Type = params['Type'] unless params['Location'].nil? @Location = Location.new @Location.deserialize(params['Location']) end end |