Class: TencentCloud::Cpdp::V20190820::PayeeAccountInfoResult

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

Overview

账户信息结果

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(accountid = nil, accountname = nil, remark = nil, createtime = nil, userinfo = nil, propertyinfo = nil) ⇒ PayeeAccountInfoResult

Returns a new instance of PayeeAccountInfoResult.



13975
13976
13977
13978
13979
13980
13981
13982
# File 'lib/v20190820/models.rb', line 13975

def initialize(accountid=nil, accountname=nil, remark=nil, createtime=nil, userinfo=nil, propertyinfo=nil)
  @AccountId = accountid
  @AccountName = accountname
  @Remark = remark
  @CreateTime = createtime
  @UserInfo = userinfo
  @PropertyInfo = propertyinfo
end

Instance Attribute Details

#AccountIdObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • AccountId:

    账户ID

  • AccountName:

    账户名称

  • Remark:

    备注

  • CreateTime:

    创建时间

  • UserInfo:

    用户信息

  • PropertyInfo:

    属性信息



13973
13974
13975
# File 'lib/v20190820/models.rb', line 13973

def AccountId
  @AccountId
end

#AccountNameObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • AccountId:

    账户ID

  • AccountName:

    账户名称

  • Remark:

    备注

  • CreateTime:

    创建时间

  • UserInfo:

    用户信息

  • PropertyInfo:

    属性信息



13973
13974
13975
# File 'lib/v20190820/models.rb', line 13973

def AccountName
  @AccountName
end

#CreateTimeObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • AccountId:

    账户ID

  • AccountName:

    账户名称

  • Remark:

    备注

  • CreateTime:

    创建时间

  • UserInfo:

    用户信息

  • PropertyInfo:

    属性信息



13973
13974
13975
# File 'lib/v20190820/models.rb', line 13973

def CreateTime
  @CreateTime
end

#PropertyInfoObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • AccountId:

    账户ID

  • AccountName:

    账户名称

  • Remark:

    备注

  • CreateTime:

    创建时间

  • UserInfo:

    用户信息

  • PropertyInfo:

    属性信息



13973
13974
13975
# File 'lib/v20190820/models.rb', line 13973

def PropertyInfo
  @PropertyInfo
end

#RemarkObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • AccountId:

    账户ID

  • AccountName:

    账户名称

  • Remark:

    备注

  • CreateTime:

    创建时间

  • UserInfo:

    用户信息

  • PropertyInfo:

    属性信息



13973
13974
13975
# File 'lib/v20190820/models.rb', line 13973

def Remark
  @Remark
end

#UserInfoObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • AccountId:

    账户ID

  • AccountName:

    账户名称

  • Remark:

    备注

  • CreateTime:

    创建时间

  • UserInfo:

    用户信息

  • PropertyInfo:

    属性信息



13973
13974
13975
# File 'lib/v20190820/models.rb', line 13973

def UserInfo
  @UserInfo
end

Instance Method Details

#deserialize(params) ⇒ Object



13984
13985
13986
13987
13988
13989
13990
13991
13992
13993
13994
13995
13996
13997
# File 'lib/v20190820/models.rb', line 13984

def deserialize(params)
  @AccountId = params['AccountId']
  @AccountName = params['AccountName']
  @Remark = params['Remark']
  @CreateTime = params['CreateTime']
  unless params['UserInfo'].nil?
    @UserInfo = PayeeAccountUserInfo.new
    @UserInfo.deserialize(params['UserInfo'])
  end
  unless params['PropertyInfo'].nil?
    @PropertyInfo = PayeeAccountPropertyInfo.new
    @PropertyInfo.deserialize(params['PropertyInfo'])
  end
end