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.
7256 7257 7258 |
# File 'lib/v20181119/models.rb', line 7256 def initialize(otherinvoiceitemlist=nil) @OtherInvoiceItemList = otherinvoiceitemlist end |
Instance Attribute Details
#OtherInvoiceItemList ⇒ Object
7254 7255 7256 |
# File 'lib/v20181119/models.rb', line 7254 def OtherInvoiceItemList @OtherInvoiceItemList end |
Instance Method Details
#deserialize(params) ⇒ Object
7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 |
# File 'lib/v20181119/models.rb', line 7260 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 |