UNPKG

244 BJavaScriptView Raw
1class Broadcast {
2 constructor(client) {
3 this.client = client
4 }
5
6 get(options) {
7 return this.client._request({
8 method: 'GET',
9 path: '/broadcast/v1/broadcasts',
10 qs: options,
11 })
12 }
13}
14
15module.exports = Broadcast