Class: TencentCloud::Ocr::V20181119::OtherInvoiceList
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::OtherInvoiceList
- Defined in:
- lib/v20181119/models.rb
Overview
其他票Table
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(otherinvoiceitemlist = nil) ⇒ OtherInvoiceList
constructor
A new instance of OtherInvoiceList.
Constructor Details
#initialize(otherinvoiceitemlist = nil) ⇒ OtherInvoiceList
Returns a new instance of OtherInvoiceList.
7396 7397 7398 |
# File 'lib/v20181119/models.rb', line 7396 def initialize(otherinvoiceitemlist=nil) @OtherInvoiceItemList = otherinvoiceitemlist end |
Instance Attribute Details
#OtherInvoiceItemList ⇒ Object
7394 7395 7396 |
# File 'lib/v20181119/models.rb', line 7394 def OtherInvoiceItemList @OtherInvoiceItemList end |
Instance Method Details
#deserialize(params) ⇒ Object
7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 |
# File 'lib/v20181119/models.rb', line 7400 def deserialize(params) unless params['OtherInvoiceItemList'].nil? @OtherInvoiceItemList = [] params['OtherInvoiceItemList'].each do |i| otherinvoiceitem_tmp = OtherInvoiceItem.new otherinvoiceitem_tmp.deserialize(i) @OtherInvoiceItemList << otherinvoiceitem_tmp end end end |