class TencentCloud::Sqlserver::V20180328::DescribeAccountPrivilegeByDBResponse

DescribeAccountPrivilegeByDB返回参数结构体

def deserialize(params)

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Accounts'].nil?
    @Accounts = []
    params['Accounts'].each do |i|
      accountprivilege_tmp = AccountPrivilege.new
      accountprivilege_tmp.deserialize(i)
      @Accounts << accountprivilege_tmp
    end
  end
  @RequestId = params['RequestId']
end

def initialize(totalcount=nil, accounts=nil, requestid=nil)

def initialize(totalcount=nil, accounts=nil, requestid=nil)
  @TotalCount = totalcount
  @Accounts = accounts
  @RequestId = requestid
end