Class: TencentCloud::Iss::V20230517::AddStreamAuthRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::AddStreamAuthRequest
- Defined in:
- lib/v20230517/models.rb
Overview
AddStreamAuth请求参数结构体
Instance Attribute Summary collapse
- #Id ⇒ Object
- #PullExpired ⇒ Object
- #PullSecret ⇒ Object
- #PullState ⇒ Object
- #PushExpired ⇒ Object
- #PushSecret ⇒ Object
- #PushState ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(id = nil, pullstate = nil, pullsecret = nil, pullexpired = nil, pushstate = nil, pushsecret = nil, pushexpired = nil) ⇒ AddStreamAuthRequest
constructor
A new instance of AddStreamAuthRequest.
Constructor Details
#initialize(id = nil, pullstate = nil, pullsecret = nil, pullexpired = nil, pushstate = nil, pushsecret = nil, pushexpired = nil) ⇒ AddStreamAuthRequest
Returns a new instance of AddStreamAuthRequest.
1056 1057 1058 1059 1060 1061 1062 1063 1064 |
# File 'lib/v20230517/models.rb', line 1056 def initialize(id=nil, pullstate=nil, pullsecret=nil, pullexpired=nil, pushstate=nil, pushsecret=nil, pushexpired=nil) @Id = id @PullState = pullstate @PullSecret = pullsecret @PullExpired = pullexpired @PushState = pushstate @PushSecret = pushsecret @PushExpired = pushexpired end |
Instance Attribute Details
#Id ⇒ Object
1054 1055 1056 |
# File 'lib/v20230517/models.rb', line 1054 def Id @Id end |
#PullExpired ⇒ Object
1054 1055 1056 |
# File 'lib/v20230517/models.rb', line 1054 def PullExpired @PullExpired end |
#PullSecret ⇒ Object
1054 1055 1056 |
# File 'lib/v20230517/models.rb', line 1054 def PullSecret @PullSecret end |
#PullState ⇒ Object
1054 1055 1056 |
# File 'lib/v20230517/models.rb', line 1054 def PullState @PullState end |
#PushExpired ⇒ Object
1054 1055 1056 |
# File 'lib/v20230517/models.rb', line 1054 def PushExpired @PushExpired end |
#PushSecret ⇒ Object
1054 1055 1056 |
# File 'lib/v20230517/models.rb', line 1054 def PushSecret @PushSecret end |
#PushState ⇒ Object
1054 1055 1056 |
# File 'lib/v20230517/models.rb', line 1054 def PushState @PushState end |
Instance Method Details
#deserialize(params) ⇒ Object
1066 1067 1068 1069 1070 1071 1072 1073 1074 |
# File 'lib/v20230517/models.rb', line 1066 def deserialize(params) @Id = params['Id'] @PullState = params['PullState'] @PullSecret = params['PullSecret'] @PullExpired = params['PullExpired'] @PushState = params['PushState'] @PushSecret = params['PushSecret'] @PushExpired = params['PushExpired'] end |