Class: TencentCloud::Cme::V20191029::CreateProjectResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::CreateProjectResponse
- Defined in:
- lib/v20191029/models.rb
Overview
CreateProject返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(projectid = nil, rtmppushinputinfoset = nil, requestid = nil) ⇒ CreateProjectResponse
constructor
A new instance of CreateProjectResponse.
Constructor Details
#initialize(projectid = nil, rtmppushinputinfoset = nil, requestid = nil) ⇒ CreateProjectResponse
Returns a new instance of CreateProjectResponse.
758 759 760 761 762 |
# File 'lib/v20191029/models.rb', line 758 def initialize(projectid=nil, rtmppushinputinfoset=nil, requestid=nil) @ProjectId = projectid @RtmpPushInputInfoSet = rtmppushinputinfoset @RequestId = requestid end |
Instance Attribute Details
#ProjectId ⇒ Object
756 757 758 |
# File 'lib/v20191029/models.rb', line 756 def ProjectId @ProjectId end |
#RequestId ⇒ Object
756 757 758 |
# File 'lib/v20191029/models.rb', line 756 def RequestId @RequestId end |
#RtmpPushInputInfoSet ⇒ Object
756 757 758 |
# File 'lib/v20191029/models.rb', line 756 def RtmpPushInputInfoSet @RtmpPushInputInfoSet end |
Instance Method Details
#deserialize(params) ⇒ Object
764 765 766 767 768 769 770 771 772 773 774 775 |
# File 'lib/v20191029/models.rb', line 764 def deserialize(params) @ProjectId = params['ProjectId'] unless params['RtmpPushInputInfoSet'].nil? @RtmpPushInputInfoSet = [] params['RtmpPushInputInfoSet'].each do |i| rtmppushinputinfo_tmp = RtmpPushInputInfo.new rtmppushinputinfo_tmp.deserialize(i) @RtmpPushInputInfoSet << rtmppushinputinfo_tmp end end @RequestId = params['RequestId'] end |