UNPKG

233 BJavaScriptView Raw
1class Integrations {
2 constructor(client) {
3 this.client = client
4 }
5
6 getAccountDetails() {
7 return this.client._request({
8 method: 'GET',
9 path: '/integrations/v1/me',
10 })
11 }
12}
13
14module.exports = Integrations