MadKudu/node-hubspot

View on GitHub
lib/page.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class Page {
  constructor(client) {
    this.client = client
  }

  get(options) {
    return this.client.apiRequest({
      method: 'GET',
      path: '/content/api/v2/pages',
      qs: options,
    })
  }
}

module.exports = Page