AbuseDetected

针对客户发生的用户滥用行为的通用提醒。

JSON 表示法
{
  "subAlertId": string,
  "product": string,
  "additionalDetails": {
    object (EntityList)
  },
  "variationType": enum (AbuseDetectedVariationType)
}
字段
subAlertId

string

每个已引入的子提醒的唯一标识符。

product

string

滥用行为的来源产品。

additionalDetails

object (EntityList)

要显示在提醒中的表格中的滥用行为用户/实体列表。

variationType

enum (AbuseDetectedVariationType)

“检测到滥用行为”提醒的变体。variationType 决定了提醒详情中显示的文本。这与 subAlertId 不同,因为每个子提醒可以有多个 variation_type,表示提醒的不同阶段。

EntityList

EntityList 以可在提醒中心界面中转换为表格的格式存储实体。

JSON 表示法
{
  "name": string,
  "headers": [
    string
  ],
  "entities": [
    {
      object (Entity)
    }
  ]
}
字段
name

string

用于显示此实体列表的键详细信息的名称。

headers[]

string

实体中值的标题。如果在“实体”中未定义任何值,则此字段应为空。

entities[]

object (Entity)

受提醒影响的实体列表。

实体

受提醒影响或与提醒相关的个别实体。

JSON 表示法
{
  "name": string,
  "link": string,
  "values": [
    string
  ]
}
字段
name

string

此实体的人类可读名称,例如电子邮件地址、文件 ID 或设备名称。

values[]

string

除了名称之外的其他值。值的顺序应与 EntityList 中的标题一致。