@@ -38,7 +38,7 @@ The data returned from the API is automatically converted into [OpenStruct](http
38
38
See the examples below to get a better idea of how to access the data.
39
39
40
40
### Examples
41
- ##### Search
41
+ #### Search
42
42
``` rb
43
43
>> achievements = client.search(indexes: ' achievement' , string: ' tankless' )
44
44
=> ...
@@ -48,7 +48,7 @@ See the examples below to get a better idea of how to access the data.
48
48
=> 10
49
49
```
50
50
51
- ##### Content
51
+ #### Content
52
52
``` rb
53
53
>> client.content
54
54
=> [" Achievement" , " AchievementCategory" , " AchievementKind" , ...]
@@ -64,13 +64,13 @@ See the examples below to get a better idea of how to access the data.
64
64
=> [" To Crush Your Enemies IV" , " To Crush Your Enemies V" ]
65
65
```
66
66
67
- ##### Servers
67
+ #### Servers
68
68
``` rb
69
69
>> client.servers
70
70
=> [" Adamantoise" , " Aegis" , " Alexander" , ...]
71
71
```
72
72
73
- ##### Character
73
+ #### Character
74
74
``` rb
75
75
>> characters = client.character_search(name: ' raelys skyborn' , server: ' behemoth' )
76
76
=> ...
@@ -84,7 +84,7 @@ See the examples below to get a better idea of how to access the data.
84
84
=> 692
85
85
```
86
86
87
- ##### Free Company
87
+ #### Free Company
88
88
``` rb
89
89
>> fcs = client.free_company_search(name: ' lodestone' , server: ' behemoth' )
90
90
=> ...
@@ -98,7 +98,7 @@ See the examples below to get a better idea of how to access the data.
98
98
=> " Raelys Skyborn"
99
99
```
100
100
101
- ##### Linkshell
101
+ #### Linkshell
102
102
``` rb
103
103
>> linkshells = client.linkshell_search(name: ' thunderbirds' , server: ' behemoth' )
104
104
=> ...
@@ -110,7 +110,7 @@ See the examples below to get a better idea of how to access the data.
110
110
=> " Thunderbirds"
111
111
```
112
112
113
- ##### PVP Team
113
+ #### PVP Team
114
114
``` rb
115
115
>> teams = client.pvp_team_search(name: ' kill' , server: ' chaos' )
116
116
=> ...
@@ -120,15 +120,15 @@ See the examples below to get a better idea of how to access the data.
120
120
=> " !Kill_For_A_Friend!"
121
121
```
122
122
123
- ##### Lodestone
123
+ #### Lodestone
124
124
``` rb
125
125
>> updates = client.lodestone(:updates )
126
126
=> ...
127
127
>> updates.first.title
128
128
=> " Companion App Updated (Sep. 18)"
129
129
```
130
130
131
- ##### Patch List
131
+ #### Patch List
132
132
``` rb
133
133
>> patch = client.patch_list.last
134
134
=> ...
0 commit comments