Class: TencentCloud::Tione::V20211111::DescribeNotebooksResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tione::V20211111::DescribeNotebooksResponse
- Defined in:
- lib/v20211111/models.rb
Overview
DescribeNotebooks返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(notebookset = nil, totalcount = nil, requestid = nil) ⇒ DescribeNotebooksResponse
constructor
A new instance of DescribeNotebooksResponse.
Constructor Details
#initialize(notebookset = nil, totalcount = nil, requestid = nil) ⇒ DescribeNotebooksResponse
Returns a new instance of DescribeNotebooksResponse.
3843 3844 3845 3846 3847 |
# File 'lib/v20211111/models.rb', line 3843 def initialize(notebookset=nil, totalcount=nil, requestid=nil) @NotebookSet = notebookset @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#NotebookSet ⇒ Object
3841 3842 3843 |
# File 'lib/v20211111/models.rb', line 3841 def NotebookSet @NotebookSet end |
#RequestId ⇒ Object
3841 3842 3843 |
# File 'lib/v20211111/models.rb', line 3841 def RequestId @RequestId end |
#TotalCount ⇒ Object
3841 3842 3843 |
# File 'lib/v20211111/models.rb', line 3841 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 |
# File 'lib/v20211111/models.rb', line 3849 def deserialize(params) unless params['NotebookSet'].nil? @NotebookSet = [] params['NotebookSet'].each do |i| notebooksetitem_tmp = NotebookSetItem.new notebooksetitem_tmp.deserialize(i) @NotebookSet << notebooksetitem_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |