aboutsummaryrefslogtreecommitdiffstats
path: root/docs/offeredapis/api_hub/api.plantuml
blob: 0b0016c2e28ab48f4f5d220d690484eab8d0e145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@startuml


class ErrorDetail {
   code:int
   message:string
   description:string
   infoURL:string
}

class Error {
   code:int
   message:string
   description:string
   infoURL:string
}
   Error --> "0-*" ErrorDetail : details

class HubIn {
   query:string
   callback:string
}

class Hub {
   id:string
   query:string
   callback:string
}

@enduml