Class: TencentCloud::Ocr::V20181119::FlightInvoiceOCRResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::FlightInvoiceOCRResponse
- Defined in:
- lib/v20181119/models.rb
Overview
FlightInvoiceOCR返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flightinvoiceinfos = nil, requestid = nil) ⇒ FlightInvoiceOCRResponse
constructor
A new instance of FlightInvoiceOCRResponse.
Constructor Details
#initialize(flightinvoiceinfos = nil, requestid = nil) ⇒ FlightInvoiceOCRResponse
Returns a new instance of FlightInvoiceOCRResponse.
3276 3277 3278 3279 |
# File 'lib/v20181119/models.rb', line 3276 def initialize(flightinvoiceinfos=nil, requestid=nil) @FlightInvoiceInfos = flightinvoiceinfos @RequestId = requestid end |
Instance Attribute Details
#FlightInvoiceInfos ⇒ Object
3274 3275 3276 |
# File 'lib/v20181119/models.rb', line 3274 def FlightInvoiceInfos @FlightInvoiceInfos end |
#RequestId ⇒ Object
3274 3275 3276 |
# File 'lib/v20181119/models.rb', line 3274 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 |
# File 'lib/v20181119/models.rb', line 3281 def deserialize(params) unless params['FlightInvoiceInfos'].nil? @FlightInvoiceInfos = [] params['FlightInvoiceInfos'].each do |i| flightinvoiceinfo_tmp = FlightInvoiceInfo.new flightinvoiceinfo_tmp.deserialize(i) @FlightInvoiceInfos << flightinvoiceinfo_tmp end end @RequestId = params['RequestId'] end |