class TencentCloud::Tione::V20211111::DescribeNotebookImageRecordsResponse

DescribeNotebookImageRecords返回参数结构体

def deserialize(params)

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['NotebookImageRecords'].nil?
    @NotebookImageRecords = []
    params['NotebookImageRecords'].each do |i|
      notebookimagerecord_tmp = NotebookImageRecord.new
      notebookimagerecord_tmp.deserialize(i)
      @NotebookImageRecords << notebookimagerecord_tmp
    end
  end
  @RequestId = params['RequestId']
end

def initialize(totalcount=nil, notebookimagerecords=nil, requestid=nil)

def initialize(totalcount=nil, notebookimagerecords=nil, requestid=nil)
  @TotalCount = totalcount
  @NotebookImageRecords = notebookimagerecords
  @RequestId = requestid
end