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.
7269 7270 7271 |
# File 'lib/v20181119/models.rb', line 7269 def initialize(otherinvoiceitemlist=nil) @OtherInvoiceItemList = otherinvoiceitemlist end |
Instance Attribute Details
#OtherInvoiceItemList ⇒ Object
7267 7268 7269 |
# File 'lib/v20181119/models.rb', line 7267 def OtherInvoiceItemList @OtherInvoiceItemList end |
Instance Method Details
#deserialize(params) ⇒ Object
7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 |
# File 'lib/v20181119/models.rb', line 7273 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 |