Class: TencentCloud::Ocr::V20181119::PassportOCRRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::PassportOCRRequest
- Defined in:
- lib/v20181119/models.rb
Overview
PassportOCR请求参数结构体
Instance Attribute Summary collapse
-
#CropPortrait ⇒ Object
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。 建议图片存储于腾讯云,可保障更高的下载速度和稳定性。 支持中国大陆地区护照。.
-
#ImageBase64 ⇒ Object
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。 建议图片存储于腾讯云,可保障更高的下载速度和稳定性。 支持中国大陆地区护照。.
-
#ImageUrl ⇒ Object
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。 建议图片存储于腾讯云,可保障更高的下载速度和稳定性。 支持中国大陆地区护照。.
-
#Type ⇒ Object
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。 建议图片存储于腾讯云,可保障更高的下载速度和稳定性。 支持中国大陆地区护照。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(imagebase64 = nil, imageurl = nil, type = nil, cropportrait = nil) ⇒ PassportOCRRequest
constructor
A new instance of PassportOCRRequest.
Constructor Details
#initialize(imagebase64 = nil, imageurl = nil, type = nil, cropportrait = nil) ⇒ PassportOCRRequest
Returns a new instance of PassportOCRRequest.
6633 6634 6635 6636 6637 6638 |
# File 'lib/v20181119/models.rb', line 6633 def initialize(imagebase64=nil, imageurl=nil, type=nil, cropportrait=nil) @ImageBase64 = imagebase64 @ImageUrl = imageurl @Type = type @CropPortrait = cropportrait end |
Instance Attribute Details
#CropPortrait ⇒ Object
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。 建议图片存储于腾讯云,可保障更高的下载速度和稳定性。 支持中国大陆地区护照。
6631 6632 6633 |
# File 'lib/v20181119/models.rb', line 6631 def CropPortrait @CropPortrait end |
#ImageBase64 ⇒ Object
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。 建议图片存储于腾讯云,可保障更高的下载速度和稳定性。 支持中国大陆地区护照。
6631 6632 6633 |
# File 'lib/v20181119/models.rb', line 6631 def ImageBase64 @ImageBase64 end |
#ImageUrl ⇒ Object
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。 建议图片存储于腾讯云,可保障更高的下载速度和稳定性。 支持中国大陆地区护照。
6631 6632 6633 |
# File 'lib/v20181119/models.rb', line 6631 def ImageUrl @ImageUrl end |
#Type ⇒ Object
图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。 建议图片存储于腾讯云,可保障更高的下载速度和稳定性。 支持中国大陆地区护照。
6631 6632 6633 |
# File 'lib/v20181119/models.rb', line 6631 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
6640 6641 6642 6643 6644 6645 |
# File 'lib/v20181119/models.rb', line 6640 def deserialize(params) @ImageBase64 = params['ImageBase64'] @ImageUrl = params['ImageUrl'] @Type = params['Type'] @CropPortrait = params['CropPortrait'] end |