publicError 资源类型
命名空间:microsoft.graph
表示一般错误及其详细信息。
属性
属性 | 类型 | 说明 |
---|---|---|
code | string | 表示错误代码。 |
详细信息 | publicErrorDetail 集合 | 错误的详细信息。 |
innerError | publicInnerError | 内部错误的详细信息。 |
消息 | string | 面向开发人员的非本地化消息。 |
target | String | 错误的目标值。 |
关系
无。
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@odata.type": "#microsoft.graph.publicError",
"code": "String",
"message": "String",
"target": "String",
"details": [
{
"@odata.type": "microsoft.graph.publicErrorDetail"
}
],
"innerError": {
"@odata.type": "microsoft.graph.publicInnerError"
}
}