public class MyBusiness
extends com.google.api.client.googleapis.services.json.AbstractGoogleJsonClient
The Google My Business API provides an interface for managing business location information on Google.
For more information about this service, see the API Documentation
This service uses MyBusinessRequestInitializer
to initialize global parameters via its
MyBusiness.Builder
.
Modifier and Type | Class and Description |
---|---|
class |
MyBusiness.Accounts
The "accounts" collection of methods.
|
class |
MyBusiness.Attributes
The "attributes" collection of methods.
|
static class |
MyBusiness.Builder
Builder for
MyBusiness . |
class |
MyBusiness.Categories
The "categories" collection of methods.
|
class |
MyBusiness.Chains
The "chains" collection of methods.
|
class |
MyBusiness.GoogleLocations
The "googleLocations" collection of methods.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
DEFAULT_BASE_URL
The default encoded base URL of the service.
|
static java.lang.String |
DEFAULT_BATCH_PATH
The default encoded batch path of the service.
|
static java.lang.String |
DEFAULT_ROOT_URL
The default encoded root URL of the service.
|
static java.lang.String |
DEFAULT_SERVICE_PATH
The default encoded service path of the service.
|
Constructor and Description |
---|
MyBusiness(com.google.api.client.http.HttpTransport transport,
com.google.api.client.json.JsonFactory jsonFactory,
com.google.api.client.http.HttpRequestInitializer httpRequestInitializer)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
MyBusiness.Accounts |
accounts()
An accessor for creating requests from the Accounts collection.
|
MyBusiness.Attributes |
attributes()
An accessor for creating requests from the Attributes collection.
|
MyBusiness.Categories |
categories()
An accessor for creating requests from the Categories collection.
|
MyBusiness.Chains |
chains()
An accessor for creating requests from the Chains collection.
|
MyBusiness.GoogleLocations |
googleLocations()
An accessor for creating requests from the GoogleLocations collection.
|
protected void |
initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest<?> httpClientRequest) |
getJsonFactory, getObjectParser
public static final java.lang.String DEFAULT_ROOT_URL
public static final java.lang.String DEFAULT_SERVICE_PATH
public static final java.lang.String DEFAULT_BATCH_PATH
public static final java.lang.String DEFAULT_BASE_URL
public MyBusiness(com.google.api.client.http.HttpTransport transport, com.google.api.client.json.JsonFactory jsonFactory, com.google.api.client.http.HttpRequestInitializer httpRequestInitializer)
Use MyBusiness.Builder
if you need to specify any of the optional parameters.
transport
- HTTP transport, which should normally be:
com.google.api.client.extensions.appengine.http.UrlFetchTransport
newCompatibleTransport
from
com.google.api.client.extensions.android.http.AndroidHttp
com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()
jsonFactory
- JSON factory, which may be:
com.google.api.client.json.jackson2.JacksonFactory
com.google.api.client.json.gson.GsonFactory
com.google.api.client.extensions.android.json.AndroidJsonFactory
httpRequestInitializer
- HTTP request initializer or null
for noneprotected void initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest<?> httpClientRequest) throws java.io.IOException
initialize
in class com.google.api.client.googleapis.services.AbstractGoogleClient
java.io.IOException
public MyBusiness.Accounts accounts()
The typical use is:
MyBusiness mybusiness = new MyBusiness(...);
MyBusiness.Accounts.List request = mybusiness.accounts().list(parameters ...)
public MyBusiness.Attributes attributes()
The typical use is:
MyBusiness mybusiness = new MyBusiness(...);
MyBusiness.Attributes.List request = mybusiness.attributes().list(parameters ...)
public MyBusiness.Categories categories()
The typical use is:
MyBusiness mybusiness = new MyBusiness(...);
MyBusiness.Categories.List request = mybusiness.categories().list(parameters ...)
public MyBusiness.Chains chains()
The typical use is:
MyBusiness mybusiness = new MyBusiness(...);
MyBusiness.Chains.List request = mybusiness.chains().list(parameters ...)
public MyBusiness.GoogleLocations googleLocations()
The typical use is:
MyBusiness mybusiness = new MyBusiness(...);
MyBusiness.GoogleLocations.List request = mybusiness.googleLocations().list(parameters ...)
Copyright © 2011-2018 Google. All Rights Reserved.