Class: TencentCloud::Ocr::V20181119::BusinessCardInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ocr::V20181119::BusinessCardInfo
- Defined in:
- lib/v20181119/models.rb
Overview
名片识别结果
Instance Attribute Summary collapse
-
#ItemCoord ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。.
-
#Name ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。.
-
#Value ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, value = nil, itemcoord = nil) ⇒ BusinessCardInfo
constructor
A new instance of BusinessCardInfo.
Constructor Details
#initialize(name = nil, value = nil, itemcoord = nil) ⇒ BusinessCardInfo
Returns a new instance of BusinessCardInfo.
1046 1047 1048 1049 1050 |
# File 'lib/v20181119/models.rb', line 1046 def initialize(name=nil, value=nil, itemcoord=nil) @Name = name @Value = value @ItemCoord = itemcoord end |
Instance Attribute Details
#ItemCoord ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。
1044 1045 1046 |
# File 'lib/v20181119/models.rb', line 1044 def ItemCoord @ItemCoord end |
#Name ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。
1044 1045 1046 |
# File 'lib/v20181119/models.rb', line 1044 def Name @Name end |
#Value ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。
1044 1045 1046 |
# File 'lib/v20181119/models.rb', line 1044 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
1052 1053 1054 1055 1056 1057 1058 1059 |
# File 'lib/v20181119/models.rb', line 1052 def deserialize(params) @Name = params['Name'] @Value = params['Value'] unless params['ItemCoord'].nil? @ItemCoord = ItemCoord.new @ItemCoord.deserialize(params['ItemCoord']) end end |