Class: TencentCloud::Ic::V20190307::SendSmsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ic::V20190307::SendSmsRequest
- Defined in:
- lib/v20190307/models.rb
Overview
SendSms请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(sdkappid = nil, iccid = nil, content = nil) ⇒ SendSmsRequest
constructor
A new instance of SendSmsRequest.
Constructor Details
#initialize(sdkappid = nil, iccid = nil, content = nil) ⇒ SendSmsRequest
Returns a new instance of SendSmsRequest.
733 734 735 736 737 |
# File 'lib/v20190307/models.rb', line 733 def initialize(sdkappid=nil, iccid=nil, content=nil) @Sdkappid = sdkappid @Iccid = iccid @Content = content end |
Instance Attribute Details
#Content ⇒ Object
731 732 733 |
# File 'lib/v20190307/models.rb', line 731 def Content @Content end |
#Iccid ⇒ Object
731 732 733 |
# File 'lib/v20190307/models.rb', line 731 def Iccid @Iccid end |
#Sdkappid ⇒ Object
731 732 733 |
# File 'lib/v20190307/models.rb', line 731 def Sdkappid @Sdkappid end |
Instance Method Details
#deserialize(params) ⇒ Object
739 740 741 742 743 |
# File 'lib/v20190307/models.rb', line 739 def deserialize(params) @Sdkappid = params['Sdkappid'] @Iccid = params['Iccid'] @Content = params['Content'] end |