blob: 43d92caca57cfa65eb8c52975adede42cd1fa95d (
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_status : table<number>\lformat : table<string>\lmethod : string\loptional_params : table<string>\lpath : string\lrequired_params : 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];
}
|