publicInnerError 资源类型publicInnerError resource type
命名空间:microsoft.graphNamespace: microsoft.graph
表示 publicError 的内部详细信息。Represents the inner details of a publicError.
属性Properties
属性Property | 类型Type | 说明Description |
---|---|---|
codecode | StringString | 错误代码。The error code. |
详细信息details | publicErrorDetail 集合publicErrorDetail collection | 错误详细信息的集合。A collection of error details. |
messagemessage | StringString | 错误消息。The error message. |
targettarget | StringString | 错误的目标值。The target of the error. |
关系Relationships
无。None.
JSON 表示形式JSON representation
下面是资源的 JSON 表示形式。The following is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.publicInnerError",
"code": "String",
"message": "String",
"target": "String",
"details": [
{
"@odata.type": "microsoft.graph.publicErrorDetail"
}
]
}