Class: TencentCloud::Ess::V20201111::FormField
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::FormField
- Defined in:
- lib/v20201111/models.rb
Overview
style String 为字体风格设置 风格支持: font : 目前支持 黑体、宋体; fontSize: 6-72; color:000000-FFFFFF 字符串形如: "#FFFFFF" 或者 "0xFFFFFF"; bold : 是否加粗, true : 加粗 false: 不加粗; align: 对其方式, 支持 LEFT / RIGHT / CENTER
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(componentvalue = nil, componentid = nil, componentname = nil) ⇒ FormField
constructor
A new instance of FormField.
Constructor Details
#initialize(componentvalue = nil, componentid = nil, componentname = nil) ⇒ FormField
Returns a new instance of FormField.
14303 14304 14305 14306 14307 |
# File 'lib/v20201111/models.rb', line 14303 def initialize(componentvalue=nil, componentid=nil, componentname=nil) @ComponentValue = componentvalue @ComponentId = componentid @ComponentName = componentname end |
Instance Attribute Details
#ComponentId ⇒ Object
14301 14302 14303 |
# File 'lib/v20201111/models.rb', line 14301 def ComponentId @ComponentId end |
#ComponentName ⇒ Object
14301 14302 14303 |
# File 'lib/v20201111/models.rb', line 14301 def ComponentName @ComponentName end |
#ComponentValue ⇒ Object
14301 14302 14303 |
# File 'lib/v20201111/models.rb', line 14301 def ComponentValue @ComponentValue end |
Instance Method Details
#deserialize(params) ⇒ Object
14309 14310 14311 14312 14313 |
# File 'lib/v20201111/models.rb', line 14309 def deserialize(params) @ComponentValue = params['ComponentValue'] @ComponentId = params['ComponentId'] @ComponentName = params['ComponentName'] end |