Class: TencentCloud::Ccc::V20200210::EventStaffDetail
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ccc::V20200210::EventStaffDetail
- Defined in:
- lib/v20200210/models.rb
Overview
座席事件相关详情
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(staffs = nil) ⇒ EventStaffDetail
constructor
A new instance of EventStaffDetail.
Constructor Details
#initialize(staffs = nil) ⇒ EventStaffDetail
Returns a new instance of EventStaffDetail.
4939 4940 4941 |
# File 'lib/v20200210/models.rb', line 4939 def initialize(staffs=nil) @Staffs = staffs end |
Instance Attribute Details
#Staffs ⇒ Object
4937 4938 4939 |
# File 'lib/v20200210/models.rb', line 4937 def Staffs @Staffs end |
Instance Method Details
#deserialize(params) ⇒ Object
4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 |
# File 'lib/v20200210/models.rb', line 4943 def deserialize(params) unless params['Staffs'].nil? @Staffs = [] params['Staffs'].each do |i| eventstaffelement_tmp = EventStaffElement.new eventstaffelement_tmp.deserialize(i) @Staffs << eventstaffelement_tmp end end end |