{
* errors: [
* {
* code: "OWL-001",
* title: "Invalid request."
* },
* {
* code: "OWL-002",
* detail: "You may need to login to access this resource.",
* title: "Unauthorized access."
* },
* {
* code: "OWL-003",
* detail: "The resource either never existed, or may have been deleted.",
* title: "Resource not found."
* },
* {
* code: "OWL-013",
* detail: "",
* title: "The analysis can not be started because the analysis frequency quota has been met."
* },
* {
* code: "OWL-015",
* detail: "",
* title: "Too many breakdown dimensions."
* },
* {
* code: "OWL-016",
* detail: "",
* title: "Too many breakdown values."
* }
* ]
* }
type Errors = {
    errors?: discoveryAgent.adaptiveCards.Error[];
}
Index