Class: TencentCloud::Ess::V20201111::FlowBrief

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

Overview

合同流程的基础信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(flowid = nil, flowname = nil, flowdescription = nil, flowtype = nil, flowstatus = nil, createdon = nil, flowmessage = nil, creator = nil, deadline = nil, userflowtype = nil, templateid = nil) ⇒ FlowBrief

Returns a new instance of FlowBrief.



13098
13099
13100
13101
13102
13103
13104
13105
13106
13107
13108
13109
13110
# File 'lib/v20201111/models.rb', line 13098

def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, flowmessage=nil, creator=nil, deadline=nil, userflowtype=nil, templateid=nil)
  @FlowId = flowid
  @FlowName = flowname
  @FlowDescription = flowdescription
  @FlowType = flowtype
  @FlowStatus = flowstatus
  @CreatedOn = createdon
  @FlowMessage = flowmessage
  @Creator = creator
  @Deadline = deadline
  @UserFlowType = userflowtype
  @TemplateId = templateid
end

Instance Attribute Details

#CreatedOnObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def CreatedOn
  @CreatedOn
end

#CreatorObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def Creator
  @Creator
end

#DeadlineObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def Deadline
  @Deadline
end

#FlowDescriptionObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def FlowDescription
  @FlowDescription
end

#FlowIdObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def FlowId
  @FlowId
end

#FlowMessageObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def FlowMessage
  @FlowMessage
end

#FlowNameObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def FlowName
  @FlowName
end

#FlowStatusObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def FlowStatus
  @FlowStatus
end

#FlowTypeObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def FlowType
  @FlowType
end

#TemplateIdObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def TemplateId
  @TemplateId
end

#UserFlowTypeObject

自定义合同类型的位置,在下图所示地方: image

Parameters:

  • TemplateId:

    发起模板时,使用的模板Id



13096
13097
13098
# File 'lib/v20201111/models.rb', line 13096

def UserFlowType
  @UserFlowType
end

Instance Method Details

#deserialize(params) ⇒ Object



13112
13113
13114
13115
13116
13117
13118
13119
13120
13121
13122
13123
13124
13125
13126
13127
# File 'lib/v20201111/models.rb', line 13112

def deserialize(params)
  @FlowId = params['FlowId']
  @FlowName = params['FlowName']
  @FlowDescription = params['FlowDescription']
  @FlowType = params['FlowType']
  @FlowStatus = params['FlowStatus']
  @CreatedOn = params['CreatedOn']
  @FlowMessage = params['FlowMessage']
  @Creator = params['Creator']
  @Deadline = params['Deadline']
  unless params['UserFlowType'].nil?
    @UserFlowType = UserFlowType.new
    @UserFlowType.deserialize(params['UserFlowType'])
  end
  @TemplateId = params['TemplateId']
end