blob: 4d2a3dcd7280f3309d05f0a5ac74ed1b926ceb5b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
digraph {
node [shape=record];
"Method"
[label="{\N|authentication : boolean\lbase_url : string\ldescription : string\lexpected : table<number>\lformat : table<string>\lmethod : string\loptional : table<string>\lpath : string\lrequired : table<string>\l}"];
"API"
[label="{\N|authentication : boolean\lauthority : string\lbase_url : string\ldescription : string\lformat : table<string>\lmeta : table<string,string>\lmethods : table<string,Method>\lname : string\lversion : string\l}"];
"API" -> "Method" // attr isa table<string,Method>
[label = "methods", arrowhead = none, arrowtail = odiamond];
}
|