Class: TencentCloud::Ess::V20201111::CreateUserMobileChangeUrlRequest

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

Overview

CreateUserMobileChangeUrl请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(operator = nil, agent = nil, userid = nil, useraccounttype = nil, name = nil, idcardtype = nil, idcardnumber = nil, endpoint = nil, userdata = nil) ⇒ CreateUserMobileChangeUrlRequest

Returns a new instance of CreateUserMobileChangeUrlRequest.



8194
8195
8196
8197
8198
8199
8200
8201
8202
8203
8204
# File 'lib/v20201111/models.rb', line 8194

def initialize(operator=nil, agent=nil, userid=nil, useraccounttype=nil, name=nil, idcardtype=nil, idcardnumber=nil, endpoint=nil, userdata=nil)
  @Operator = operator
  @Agent = agent
  @UserId = userid
  @UserAccountType = useraccounttype
  @Name = name
  @IdCardType = idcardtype
  @IdCardNumber = idcardnumber
  @Endpoint = endpoint
  @UserData = userdata
end

Instance Attribute Details

#AgentObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def Agent
  @Agent
end

#EndpointObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def Endpoint
  @Endpoint
end

#IdCardNumberObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def IdCardNumber
  @IdCardNumber
end

#IdCardTypeObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def IdCardType
  @IdCardType
end

#NameObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def Name
  @Name
end

#OperatorObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def Operator
  @Operator
end

#UserAccountTypeObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def UserAccountType
  @UserAccountType
end

#UserDataObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def UserData
  @UserData
end

#UserIdObject

请注意: 此参数仅支持通过获取c端用户实名链接接口实名的用户生效。



8192
8193
8194
# File 'lib/v20201111/models.rb', line 8192

def UserId
  @UserId
end

Instance Method Details

#deserialize(params) ⇒ Object



8206
8207
8208
8209
8210
8211
8212
8213
8214
8215
8216
8217
8218
8219
8220
8221
8222
# File 'lib/v20201111/models.rb', line 8206

def deserialize(params)
  unless params['Operator'].nil?
    @Operator = UserInfo.new
    @Operator.deserialize(params['Operator'])
  end
  unless params['Agent'].nil?
    @Agent = Agent.new
    @Agent.deserialize(params['Agent'])
  end
  @UserId = params['UserId']
  @UserAccountType = params['UserAccountType']
  @Name = params['Name']
  @IdCardType = params['IdCardType']
  @IdCardNumber = params['IdCardNumber']
  @Endpoint = params['Endpoint']
  @UserData = params['UserData']
end