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.
3895 3896 3897 3898 |
# File 'lib/v20181119/models.rb', line 3895 def initialize(flightinvoiceinfos=nil, requestid=nil) @FlightInvoiceInfos = flightinvoiceinfos @RequestId = requestid end |
Instance Attribute Details
#FlightInvoiceInfos ⇒ Object
3893 3894 3895 |
# File 'lib/v20181119/models.rb', line 3893 def FlightInvoiceInfos @FlightInvoiceInfos end |
#RequestId ⇒ Object
3893 3894 3895 |
# File 'lib/v20181119/models.rb', line 3893 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 |
# File 'lib/v20181119/models.rb', line 3900 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 |