Class: TencentCloud::Ocr::V20181119::BusInvoiceOCRResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20181119/models.rb

Overview

BusInvoiceOCR返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(businvoiceinfos = nil, angle = nil, requestid = nil) ⇒ BusInvoiceOCRResponse

Returns a new instance of BusInvoiceOCRResponse.



941
942
943
944
945
# File 'lib/v20181119/models.rb', line 941

def initialize(businvoiceinfos=nil, angle=nil, requestid=nil)
  @BusInvoiceInfos = businvoiceinfos
  @Angle = angle
  @RequestId = requestid
end

Instance Attribute Details

#AngleObject

Parameters:

  • BusInvoiceInfos:

    汽车票识别结果,具体内容请点击左侧链接。

  • Angle:

    图片旋转角度(角度制),文本的水平方向为0°,顺时针为正,逆时针为负。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



939
940
941
# File 'lib/v20181119/models.rb', line 939

def Angle
  @Angle
end

#BusInvoiceInfosObject

Parameters:

  • BusInvoiceInfos:

    汽车票识别结果,具体内容请点击左侧链接。

  • Angle:

    图片旋转角度(角度制),文本的水平方向为0°,顺时针为正,逆时针为负。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



939
940
941
# File 'lib/v20181119/models.rb', line 939

def BusInvoiceInfos
  @BusInvoiceInfos
end

#RequestIdObject

Parameters:

  • BusInvoiceInfos:

    汽车票识别结果,具体内容请点击左侧链接。

  • Angle:

    图片旋转角度(角度制),文本的水平方向为0°,顺时针为正,逆时针为负。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



939
940
941
# File 'lib/v20181119/models.rb', line 939

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



947
948
949
950
951
952
953
954
955
956
957
958
# File 'lib/v20181119/models.rb', line 947

def deserialize(params)
  unless params['BusInvoiceInfos'].nil?
    @BusInvoiceInfos = []
    params['BusInvoiceInfos'].each do |i|
      businvoiceinfo_tmp = BusInvoiceInfo.new
      businvoiceinfo_tmp.deserialize(i)
      @BusInvoiceInfos << businvoiceinfo_tmp
    end
  end
  @Angle = params['Angle']
  @RequestId = params['RequestId']
end