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.
973 974 975 976 977 |
# File 'lib/v20181119/models.rb', line 973 def initialize(name=nil, value=nil, itemcoord=nil) @Name = name @Value = value @ItemCoord = itemcoord end |
Instance Attribute Details
#ItemCoord ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。
971 972 973 |
# File 'lib/v20181119/models.rb', line 971 def ItemCoord @ItemCoord end |
#Name ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。
971 972 973 |
# File 'lib/v20181119/models.rb', line 971 def Name @Name end |
#Value ⇒ Object
姓名、英文姓名、英文地址、公司、英文公司、职位、英文职位、部门、英文部门、手机、电话、传真、社交帐号、QQ、MSN、微信、微博、邮箱、邮编、网址、公司账号、其他。
971 972 973 |
# File 'lib/v20181119/models.rb', line 971 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
979 980 981 982 983 984 985 986 |
# File 'lib/v20181119/models.rb', line 979 def deserialize(params) @Name = params['Name'] @Value = params['Value'] unless params['ItemCoord'].nil? @ItemCoord = ItemCoord.new @ItemCoord.deserialize(params['ItemCoord']) end end |