Class: TencentCloud::Wedata::V20210820::DutySchedule

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210820/models.rb

Overview

值班表列表

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(rows = nil, totalcount = nil, pagenumber = nil, pagesize = nil, totalpagenumber = nil) ⇒ DutySchedule

Returns a new instance of DutySchedule.



18651
18652
18653
18654
18655
18656
18657
# File 'lib/v20210820/models.rb', line 18651

def initialize(rows=nil, totalcount=nil, pagenumber=nil, pagesize=nil, totalpagenumber=nil)
  @Rows = rows
  @TotalCount = totalcount
  @PageNumber = pagenumber
  @PageSize = pagesize
  @TotalPageNumber = totalpagenumber
end

Instance Attribute Details

#PageNumberObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    值班表列表

  • TotalCount:

    总条数

  • PageNumber:

    页号

  • PageSize:

    页大小

  • TotalPageNumber:

    总页数



18649
18650
18651
# File 'lib/v20210820/models.rb', line 18649

def PageNumber
  @PageNumber
end

#PageSizeObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    值班表列表

  • TotalCount:

    总条数

  • PageNumber:

    页号

  • PageSize:

    页大小

  • TotalPageNumber:

    总页数



18649
18650
18651
# File 'lib/v20210820/models.rb', line 18649

def PageSize
  @PageSize
end

#RowsObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    值班表列表

  • TotalCount:

    总条数

  • PageNumber:

    页号

  • PageSize:

    页大小

  • TotalPageNumber:

    总页数



18649
18650
18651
# File 'lib/v20210820/models.rb', line 18649

def Rows
  @Rows
end

#TotalCountObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    值班表列表

  • TotalCount:

    总条数

  • PageNumber:

    页号

  • PageSize:

    页大小

  • TotalPageNumber:

    总页数



18649
18650
18651
# File 'lib/v20210820/models.rb', line 18649

def TotalCount
  @TotalCount
end

#TotalPageNumberObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • Rows:

    值班表列表

  • TotalCount:

    总条数

  • PageNumber:

    页号

  • PageSize:

    页大小

  • TotalPageNumber:

    总页数



18649
18650
18651
# File 'lib/v20210820/models.rb', line 18649

def TotalPageNumber
  @TotalPageNumber
end

Instance Method Details

#deserialize(params) ⇒ Object



18659
18660
18661
18662
18663
18664
18665
18666
18667
18668
18669
18670
18671
18672
# File 'lib/v20210820/models.rb', line 18659

def deserialize(params)
  unless params['Rows'].nil?
    @Rows = []
    params['Rows'].each do |i|
      dutyscheduledata_tmp = DutyScheduleData.new
      dutyscheduledata_tmp.deserialize(i)
      @Rows << dutyscheduledata_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @PageNumber = params['PageNumber']
  @PageSize = params['PageSize']
  @TotalPageNumber = params['TotalPageNumber']
end