Class: TencentCloud::Asw::V20200722::DescribeFlowServicesResponse

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

Overview

DescribeFlowServices返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(flowserviceset = nil, totalcount = nil, requestid = nil) ⇒ DescribeFlowServicesResponse

Returns a new instance of DescribeFlowServicesResponse.



378
379
380
381
382
# File 'lib/v20200722/models.rb', line 378

def initialize(flowserviceset=nil, totalcount=nil, requestid=nil)
  @FlowServiceSet = flowserviceset
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#FlowServiceSetObject

Parameters:

  • FlowServiceSet:

    用户的状态机列表

  • TotalCount:

    用户的状态机总数

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



376
377
378
# File 'lib/v20200722/models.rb', line 376

def FlowServiceSet
  @FlowServiceSet
end

#RequestIdObject

Parameters:

  • FlowServiceSet:

    用户的状态机列表

  • TotalCount:

    用户的状态机总数

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



376
377
378
# File 'lib/v20200722/models.rb', line 376

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • FlowServiceSet:

    用户的状态机列表

  • TotalCount:

    用户的状态机总数

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



376
377
378
# File 'lib/v20200722/models.rb', line 376

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



384
385
386
387
388
389
390
391
392
393
394
395
# File 'lib/v20200722/models.rb', line 384

def deserialize(params)
  unless params['FlowServiceSet'].nil?
    @FlowServiceSet = []
    params['FlowServiceSet'].each do |i|
      statemachine_tmp = StateMachine.new
      statemachine_tmp.deserialize(i)
      @FlowServiceSet << statemachine_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end