Class: TencentCloud::Ocr::V20181119::SmartStructuralProResponse

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

Overview

SmartStructuralPro返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(angle = nil, structurallist = nil, wordlist = nil, requestid = nil) ⇒ SmartStructuralProResponse

Returns a new instance of SmartStructuralProResponse.



10991
10992
10993
10994
10995
10996
# File 'lib/v20181119/models.rb', line 10991

def initialize(angle=nil, structurallist=nil, wordlist=nil, requestid=nil)
  @Angle = angle
  @StructuralList = structurallist
  @WordList = wordlist
  @RequestId = requestid
end

Instance Attribute Details

#AngleObject

Parameters:

  • Angle:

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

  • StructuralList:

    配置结构化文本信息

  • WordList:

    还原文本信息

  • RequestId:

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



10989
10990
10991
# File 'lib/v20181119/models.rb', line 10989

def Angle
  @Angle
end

#RequestIdObject

Parameters:

  • Angle:

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

  • StructuralList:

    配置结构化文本信息

  • WordList:

    还原文本信息

  • RequestId:

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



10989
10990
10991
# File 'lib/v20181119/models.rb', line 10989

def RequestId
  @RequestId
end

#StructuralListObject

Parameters:

  • Angle:

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

  • StructuralList:

    配置结构化文本信息

  • WordList:

    还原文本信息

  • RequestId:

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



10989
10990
10991
# File 'lib/v20181119/models.rb', line 10989

def StructuralList
  @StructuralList
end

#WordListObject

Parameters:

  • Angle:

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

  • StructuralList:

    配置结构化文本信息

  • WordList:

    还原文本信息

  • RequestId:

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



10989
10990
10991
# File 'lib/v20181119/models.rb', line 10989

def WordList
  @WordList
end

Instance Method Details

#deserialize(params) ⇒ Object



10998
10999
11000
11001
11002
11003
11004
11005
11006
11007
11008
11009
11010
11011
11012
11013
11014
11015
11016
11017
# File 'lib/v20181119/models.rb', line 10998

def deserialize(params)
  @Angle = params['Angle']
  unless params['StructuralList'].nil?
    @StructuralList = []
    params['StructuralList'].each do |i|
      groupinfo_tmp = GroupInfo.new
      groupinfo_tmp.deserialize(i)
      @StructuralList << groupinfo_tmp
    end
  end
  unless params['WordList'].nil?
    @WordList = []
    params['WordList'].each do |i|
      worditem_tmp = WordItem.new
      worditem_tmp.deserialize(i)
      @WordList << worditem_tmp
    end
  end
  @RequestId = params['RequestId']
end