Class: TencentCloud::Ocr::V20181119::RecognizeStoreNameRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::RecognizeStoreNameRequest
- Defined in:
- lib/v20181119/models.rb
Overview
RecognizeStoreName请求参数结构体
Instance Attribute Summary collapse
-
#ImageBase64 ⇒ Object
支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。 支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。 支持的图片像素:需介于20-10000px之间。 图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。.
-
#ImageUrl ⇒ Object
支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。 支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。 支持的图片像素:需介于20-10000px之间。 图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(imagebase64 = nil, imageurl = nil) ⇒ RecognizeStoreNameRequest
constructor
A new instance of RecognizeStoreNameRequest.
Constructor Details
#initialize(imagebase64 = nil, imageurl = nil) ⇒ RecognizeStoreNameRequest
Returns a new instance of RecognizeStoreNameRequest.
9192 9193 9194 9195 |
# File 'lib/v20181119/models.rb', line 9192 def initialize(imagebase64=nil, imageurl=nil) @ImageBase64 = imagebase64 @ImageUrl = imageurl end |
Instance Attribute Details
#ImageBase64 ⇒ Object
支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。 支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。 支持的图片像素:需介于20-10000px之间。 图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
9190 9191 9192 |
# File 'lib/v20181119/models.rb', line 9190 def ImageBase64 @ImageBase64 end |
#ImageUrl ⇒ Object
支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。 支持的图片大小:所下载图片经Base64编码后不超过 7M。图片下载时间不超过 3 秒。 支持的图片像素:需介于20-10000px之间。 图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
9190 9191 9192 |
# File 'lib/v20181119/models.rb', line 9190 def ImageUrl @ImageUrl end |
Instance Method Details
#deserialize(params) ⇒ Object
9197 9198 9199 9200 |
# File 'lib/v20181119/models.rb', line 9197 def deserialize(params) @ImageBase64 = params['ImageBase64'] @ImageUrl = params['ImageUrl'] end |