Class: TencentCloud::Ess::V20201111::UpdateIntegrationEmployeesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::UpdateIntegrationEmployeesResponse
- Defined in:
- lib/v20201111/models.rb
Overview
UpdateIntegrationEmployees返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(successemployeedata = nil, failedemployeedata = nil, requestid = nil) ⇒ UpdateIntegrationEmployeesResponse
constructor
A new instance of UpdateIntegrationEmployeesResponse.
Constructor Details
#initialize(successemployeedata = nil, failedemployeedata = nil, requestid = nil) ⇒ UpdateIntegrationEmployeesResponse
Returns a new instance of UpdateIntegrationEmployeesResponse.
17945 17946 17947 17948 17949 |
# File 'lib/v20201111/models.rb', line 17945 def initialize(successemployeedata=nil, failedemployeedata=nil, requestid=nil) @SuccessEmployeeData = successemployeedata @FailedEmployeeData = failedemployeedata @RequestId = requestid end |
Instance Attribute Details
#FailedEmployeeData ⇒ Object
17943 17944 17945 |
# File 'lib/v20201111/models.rb', line 17943 def FailedEmployeeData @FailedEmployeeData end |
#RequestId ⇒ Object
17943 17944 17945 |
# File 'lib/v20201111/models.rb', line 17943 def RequestId @RequestId end |
#SuccessEmployeeData ⇒ Object
17943 17944 17945 |
# File 'lib/v20201111/models.rb', line 17943 def SuccessEmployeeData @SuccessEmployeeData end |
Instance Method Details
#deserialize(params) ⇒ Object
17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 |
# File 'lib/v20201111/models.rb', line 17951 def deserialize(params) unless params['SuccessEmployeeData'].nil? @SuccessEmployeeData = [] params['SuccessEmployeeData'].each do |i| successupdatestaffdata_tmp = SuccessUpdateStaffData.new successupdatestaffdata_tmp.deserialize(i) @SuccessEmployeeData << successupdatestaffdata_tmp end end unless params['FailedEmployeeData'].nil? @FailedEmployeeData = [] params['FailedEmployeeData'].each do |i| failedupdatestaffdata_tmp = FailedUpdateStaffData.new failedupdatestaffdata_tmp.deserialize(i) @FailedEmployeeData << failedupdatestaffdata_tmp end end @RequestId = params['RequestId'] end |