TypeScript typings for My Business Lodging API v1
The My Business Lodging API enables managing lodging business information on Google.
For detailed description please check documentation.
Installing
Install typings for My Business Lodging API:
npm install @types/gapi.client.mybusinesslodging-v1 --save-dev
Usage
You need to initialize Google API client in your code:
gapi.load('client', () => {
});
Then load api client wrapper:
gapi.client.load('https://mybusinesslodging.googleapis.com/$discovery/rest?version=v1', () => {
});
gapi.client.load('mybusinesslodging', 'v1', () => {
});
After that you can use My Business Lodging API resources:
await gapi.client.mybusinesslodging.locations.getLodging({ name: "name", });
await gapi.client.mybusinesslodging.locations.updateLodging({ name: "name", });