Class: TencentCloud::Ocr::V20181119::ArithmeticOCRResponse

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

Overview

ArithmeticOCR返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(textdetections = nil, angle = nil, requestid = nil) ⇒ ArithmeticOCRResponse

Returns a new instance of ArithmeticOCRResponse.



410
411
412
413
414
# File 'lib/v20181119/models.rb', line 410

def initialize(textdetections=nil, angle=nil, requestid=nil)
  @TextDetections = textdetections
  @Angle = angle
  @RequestId = requestid
end

Instance Attribute Details

#AngleObject

Parameters:

  • TextDetections:

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

  • Angle:

    图片横屏的角度(90度或270度)

  • RequestId:

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



408
409
410
# File 'lib/v20181119/models.rb', line 408

def Angle
  @Angle
end

#RequestIdObject

Parameters:

  • TextDetections:

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

  • Angle:

    图片横屏的角度(90度或270度)

  • RequestId:

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



408
409
410
# File 'lib/v20181119/models.rb', line 408

def RequestId
  @RequestId
end

#TextDetectionsObject

Parameters:

  • TextDetections:

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

  • Angle:

    图片横屏的角度(90度或270度)

  • RequestId:

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



408
409
410
# File 'lib/v20181119/models.rb', line 408

def TextDetections
  @TextDetections
end

Instance Method Details

#deserialize(params) ⇒ Object



416
417
418
419
420
421
422
423
424
425
426
427
# File 'lib/v20181119/models.rb', line 416

def deserialize(params)
  unless params['TextDetections'].nil?
    @TextDetections = []
    params['TextDetections'].each do |i|
      textarithmetic_tmp = TextArithmetic.new
      textarithmetic_tmp.deserialize(i)
      @TextDetections << textarithmetic_tmp
    end
  end
  @Angle = params['Angle']
  @RequestId = params['RequestId']
end