8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d3dfc commit 762b665Copy full SHA for 762b665
README.md
@@ -21,8 +21,23 @@ Or install it yourself as:
21
$ gem install waveapps-ruby
22
23
## Usage
24
+```
25
+ client = WaveApps::Client.new(access_token)
26
+
27
+ client.business.list(limit: 3)
28
+ client.business.find(123)
29
30
+ client.invoices.list({business: i})
31
-TODO: Write usage instructions here
32
+ [WaveApps::Currency, WaveApps::Currency, WaveApps::Currency] = client.currency.list(limit: 10)
33
+ currency = WaveApps::Currency = client.currency.find(123)
34
+ currency.update(attributes)
35
+ currency.delete
36
+ client.currency.delete(123)
37
38
+ client.invoice.list(limit: 10)
39
+ client.invoice.find(123)
40
41
42
## Development
43
0 commit comments