Skip to content

Commit

Permalink
Adds settings resource documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
coconutcraig committed Jan 14, 2019
1 parent 9defa80 commit 6c37e57
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,30 @@ class Services {
}
```

### Settings

##### Methods

- `get()`

Send the API request.

##### Example

```javascript
import OpenApi from 'coconut-open-api-js';

class Settings {
constructor() {
this.api = new OpenApi();
}

async get() {
return await this.api.settings.get();
}
}
```

## Change log

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
Expand Down

0 comments on commit 6c37e57

Please sign in to comment.