Class: TencentCloud::Zj::V20190121::SmsGetCrowdUploadInfoResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Zj::V20190121::SmsGetCrowdUploadInfoResponse
- Defined in:
- lib/v20190121/models.rb
Overview
获取短信人群包上传信息返回
Instance Attribute Summary collapse
- #CosInfo ⇒ Object
- #ExpiredTime ⇒ Object
- #SessionToken ⇒ Object
- #TmpSecretId ⇒ Object
- #TmpSecretKey ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(expiredtime = nil, sessiontoken = nil, tmpsecretid = nil, tmpsecretkey = nil, cosinfo = nil) ⇒ SmsGetCrowdUploadInfoResponse
constructor
A new instance of SmsGetCrowdUploadInfoResponse.
Constructor Details
#initialize(expiredtime = nil, sessiontoken = nil, tmpsecretid = nil, tmpsecretkey = nil, cosinfo = nil) ⇒ SmsGetCrowdUploadInfoResponse
Returns a new instance of SmsGetCrowdUploadInfoResponse.
1913 1914 1915 1916 1917 1918 1919 |
# File 'lib/v20190121/models.rb', line 1913 def initialize(expiredtime=nil, sessiontoken=nil, tmpsecretid=nil, tmpsecretkey=nil, cosinfo=nil) @ExpiredTime = expiredtime @SessionToken = sessiontoken @TmpSecretId = tmpsecretid @TmpSecretKey = tmpsecretkey @CosInfo = cosinfo end |
Instance Attribute Details
#CosInfo ⇒ Object
1911 1912 1913 |
# File 'lib/v20190121/models.rb', line 1911 def CosInfo @CosInfo end |
#ExpiredTime ⇒ Object
1911 1912 1913 |
# File 'lib/v20190121/models.rb', line 1911 def ExpiredTime @ExpiredTime end |
#SessionToken ⇒ Object
1911 1912 1913 |
# File 'lib/v20190121/models.rb', line 1911 def SessionToken @SessionToken end |
#TmpSecretId ⇒ Object
1911 1912 1913 |
# File 'lib/v20190121/models.rb', line 1911 def TmpSecretId @TmpSecretId end |
#TmpSecretKey ⇒ Object
1911 1912 1913 |
# File 'lib/v20190121/models.rb', line 1911 def TmpSecretKey @TmpSecretKey end |
Instance Method Details
#deserialize(params) ⇒ Object
1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 |
# File 'lib/v20190121/models.rb', line 1921 def deserialize(params) @ExpiredTime = params['ExpiredTime'] @SessionToken = params['SessionToken'] @TmpSecretId = params['TmpSecretId'] @TmpSecretKey = params['TmpSecretKey'] unless params['CosInfo'].nil? @CosInfo = UploadFansInfoCosInfo.new @CosInfo.deserialize(params['CosInfo']) end end |