Class: TencentCloud::Ocr::V20181119::EduPaperOCRResponse

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

Overview

EduPaperOCR返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(edupaperinfos = nil, angle = nil, questionblockinfos = nil, requestid = nil) ⇒ EduPaperOCRResponse

Returns a new instance of EduPaperOCRResponse.



2031
2032
2033
2034
2035
2036
# File 'lib/v20181119/models.rb', line 2031

def initialize(edupaperinfos=nil, angle=nil, questionblockinfos=nil, requestid=nil)
  @EduPaperInfos = edupaperinfos
  @Angle = angle
  @QuestionBlockInfos = questionblockinfos
  @RequestId = requestid
end

Instance Attribute Details

#AngleObject

Parameters:

  • EduPaperInfos:

    检测到的文本信息,具体内容请点击左侧链接。

  • Angle:

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

  • QuestionBlockInfos:

    结构化方式输出,具体内容请点击左侧链接。

  • RequestId:

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



2029
2030
2031
# File 'lib/v20181119/models.rb', line 2029

def Angle
  @Angle
end

#EduPaperInfosObject

Parameters:

  • EduPaperInfos:

    检测到的文本信息,具体内容请点击左侧链接。

  • Angle:

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

  • QuestionBlockInfos:

    结构化方式输出,具体内容请点击左侧链接。

  • RequestId:

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



2029
2030
2031
# File 'lib/v20181119/models.rb', line 2029

def EduPaperInfos
  @EduPaperInfos
end

#QuestionBlockInfosObject

Parameters:

  • EduPaperInfos:

    检测到的文本信息,具体内容请点击左侧链接。

  • Angle:

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

  • QuestionBlockInfos:

    结构化方式输出,具体内容请点击左侧链接。

  • RequestId:

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



2029
2030
2031
# File 'lib/v20181119/models.rb', line 2029

def QuestionBlockInfos
  @QuestionBlockInfos
end

#RequestIdObject

Parameters:

  • EduPaperInfos:

    检测到的文本信息,具体内容请点击左侧链接。

  • Angle:

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

  • QuestionBlockInfos:

    结构化方式输出,具体内容请点击左侧链接。

  • RequestId:

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



2029
2030
2031
# File 'lib/v20181119/models.rb', line 2029

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
# File 'lib/v20181119/models.rb', line 2038

def deserialize(params)
  unless params['EduPaperInfos'].nil?
    @EduPaperInfos = []
    params['EduPaperInfos'].each do |i|
      textedupaper_tmp = TextEduPaper.new
      textedupaper_tmp.deserialize(i)
      @EduPaperInfos << textedupaper_tmp
    end
  end
  @Angle = params['Angle']
  unless params['QuestionBlockInfos'].nil?
    @QuestionBlockInfos = []
    params['QuestionBlockInfos'].each do |i|
      questionblockobj_tmp = QuestionBlockObj.new
      questionblockobj_tmp.deserialize(i)
      @QuestionBlockInfos << questionblockobj_tmp
    end
  end
  @RequestId = params['RequestId']
end