Documentation ¶
Overview ¶
Package admob provides access to the AdMob API.
For product documentation, see: https://developers.google.com/admob/api/
Library status ¶
These client libraries are officially supported by Google. However, this library is considered complete and is in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.
When possible, we recommend using our newer [Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go) that are still actively being worked and iterated on.
Creating a client ¶
Usage example:
import "google.golang.org/api/admob/v1" ... ctx := context.Background() admobService, err := admob.NewService(ctx)
In this example, Google Application Default Credentials are used for authentication. For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.
Other authentication options ¶
By default, all available scopes (see "Constants") are used to authenticate. To restrict scopes, use google.golang.org/api/option.WithScopes:
admobService, err := admob.NewService(ctx, option.WithScopes(admob.AdmobReportScope))
To use an API key for authentication (note: some APIs do not support API keys), use google.golang.org/api/option.WithAPIKey:
admobService, err := admob.NewService(ctx, option.WithAPIKey("AIza..."))
To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow, use google.golang.org/api/option.WithTokenSource:
config := &oauth2.Config{...} // ... token, err := config.Exchange(ctx, ...) admobService, err := admob.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
See google.golang.org/api/option.ClientOption for details on options.
Index ¶
- Constants
- type AccountsAdUnitsListCall
- func (c *AccountsAdUnitsListCall) Context(ctx context.Context) *AccountsAdUnitsListCall
- func (c *AccountsAdUnitsListCall) Do(opts ...googleapi.CallOption) (*ListAdUnitsResponse, error)
- func (c *AccountsAdUnitsListCall) Fields(s ...googleapi.Field) *AccountsAdUnitsListCall
- func (c *AccountsAdUnitsListCall) Header() http.Header
- func (c *AccountsAdUnitsListCall) IfNoneMatch(entityTag string) *AccountsAdUnitsListCall
- func (c *AccountsAdUnitsListCall) PageSize(pageSize int64) *AccountsAdUnitsListCall
- func (c *AccountsAdUnitsListCall) PageToken(pageToken string) *AccountsAdUnitsListCall
- func (c *AccountsAdUnitsListCall) Pages(ctx context.Context, f func(*ListAdUnitsResponse) error) error
- type AccountsAdUnitsService
- type AccountsAppsListCall
- func (c *AccountsAppsListCall) Context(ctx context.Context) *AccountsAppsListCall
- func (c *AccountsAppsListCall) Do(opts ...googleapi.CallOption) (*ListAppsResponse, error)
- func (c *AccountsAppsListCall) Fields(s ...googleapi.Field) *AccountsAppsListCall
- func (c *AccountsAppsListCall) Header() http.Header
- func (c *AccountsAppsListCall) IfNoneMatch(entityTag string) *AccountsAppsListCall
- func (c *AccountsAppsListCall) PageSize(pageSize int64) *AccountsAppsListCall
- func (c *AccountsAppsListCall) PageToken(pageToken string) *AccountsAppsListCall
- func (c *AccountsAppsListCall) Pages(ctx context.Context, f func(*ListAppsResponse) error) error
- type AccountsAppsService
- type AccountsGetCall
- func (c *AccountsGetCall) Context(ctx context.Context) *AccountsGetCall
- func (c *AccountsGetCall) Do(opts ...googleapi.CallOption) (*PublisherAccount, error)
- func (c *AccountsGetCall) Fields(s ...googleapi.Field) *AccountsGetCall
- func (c *AccountsGetCall) Header() http.Header
- func (c *AccountsGetCall) IfNoneMatch(entityTag string) *AccountsGetCall
- type AccountsListCall
- func (c *AccountsListCall) Context(ctx context.Context) *AccountsListCall
- func (c *AccountsListCall) Do(opts ...googleapi.CallOption) (*ListPublisherAccountsResponse, error)
- func (c *AccountsListCall) Fields(s ...googleapi.Field) *AccountsListCall
- func (c *AccountsListCall) Header() http.Header
- func (c *AccountsListCall) IfNoneMatch(entityTag string) *AccountsListCall
- func (c *AccountsListCall) PageSize(pageSize int64) *AccountsListCall
- func (c *AccountsListCall) PageToken(pageToken string) *AccountsListCall
- func (c *AccountsListCall) Pages(ctx context.Context, f func(*ListPublisherAccountsResponse) error) error
- type AccountsMediationReportGenerateCall
- func (c *AccountsMediationReportGenerateCall) Context(ctx context.Context) *AccountsMediationReportGenerateCall
- func (c *AccountsMediationReportGenerateCall) Do(opts ...googleapi.CallOption) (*GenerateMediationReportResponse, error)
- func (c *AccountsMediationReportGenerateCall) Fields(s ...googleapi.Field) *AccountsMediationReportGenerateCall
- func (c *AccountsMediationReportGenerateCall) Header() http.Header
- type AccountsMediationReportService
- type AccountsNetworkReportGenerateCall
- func (c *AccountsNetworkReportGenerateCall) Context(ctx context.Context) *AccountsNetworkReportGenerateCall
- func (c *AccountsNetworkReportGenerateCall) Do(opts ...googleapi.CallOption) (*GenerateNetworkReportResponse, error)
- func (c *AccountsNetworkReportGenerateCall) Fields(s ...googleapi.Field) *AccountsNetworkReportGenerateCall
- func (c *AccountsNetworkReportGenerateCall) Header() http.Header
- type AccountsNetworkReportService
- type AccountsService
- type AdUnit
- type App
- type AppLinkedAppInfo
- type AppManualAppInfo
- type Date
- type DateRange
- type GenerateMediationReportRequest
- type GenerateMediationReportResponse
- type GenerateNetworkReportRequest
- type GenerateNetworkReportResponse
- type ListAdUnitsResponse
- type ListAppsResponse
- type ListPublisherAccountsResponse
- type LocalizationSettings
- type MediationReportSpec
- type MediationReportSpecDimensionFilter
- type MediationReportSpecSortCondition
- type NetworkReportSpec
- type NetworkReportSpecDimensionFilter
- type NetworkReportSpecSortCondition
- type PublisherAccount
- type ReportFooter
- type ReportHeader
- type ReportRow
- type ReportRowDimensionValue
- type ReportRowMetricValue
- type ReportWarning
- type Service
- type StringList
Constants ¶
const ( // See your AdMob data AdmobReadonlyScope = "https://www.googleapis.com/auth/admob.readonly" // See your AdMob data AdmobReportScope = "https://www.googleapis.com/auth/admob.report" )
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccountsAdUnitsListCall ¶
type AccountsAdUnitsListCall struct {
// contains filtered or unexported fields
}
func (*AccountsAdUnitsListCall) Context ¶
func (c *AccountsAdUnitsListCall) Context(ctx context.Context) *AccountsAdUnitsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*AccountsAdUnitsListCall) Do ¶
func (c *AccountsAdUnitsListCall) Do(opts ...googleapi.CallOption) (*ListAdUnitsResponse, error)
Do executes the "admob.accounts.adUnits.list" call. Exactly one of *ListAdUnitsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListAdUnitsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*AccountsAdUnitsListCall) Fields ¶
func (c *AccountsAdUnitsListCall) Fields(s ...googleapi.Field) *AccountsAdUnitsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsAdUnitsListCall) Header ¶
func (c *AccountsAdUnitsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsAdUnitsListCall) IfNoneMatch ¶
func (c *AccountsAdUnitsListCall) IfNoneMatch(entityTag string) *AccountsAdUnitsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*AccountsAdUnitsListCall) PageSize ¶
func (c *AccountsAdUnitsListCall) PageSize(pageSize int64) *AccountsAdUnitsListCall
PageSize sets the optional parameter "pageSize": The maximum number of ad units to return. If unspecified or 0, at most 10,000 ad units will be returned. The maximum value is 20,000; values above 20,000 will be coerced to 20,000.
func (*AccountsAdUnitsListCall) PageToken ¶
func (c *AccountsAdUnitsListCall) PageToken(pageToken string) *AccountsAdUnitsListCall
PageToken sets the optional parameter "pageToken": The value returned by the last `ListAdUnitsResponse`; indicates that this is a continuation of a prior `ListAdUnits` call, and that the system should return the next page of data.
func (*AccountsAdUnitsListCall) Pages ¶
func (c *AccountsAdUnitsListCall) Pages(ctx context.Context, f func(*ListAdUnitsResponse) error) error
Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.
type AccountsAdUnitsService ¶
type AccountsAdUnitsService struct {
// contains filtered or unexported fields
}
func NewAccountsAdUnitsService ¶
func NewAccountsAdUnitsService(s *Service) *AccountsAdUnitsService
func (*AccountsAdUnitsService) List ¶
func (r *AccountsAdUnitsService) List(parent string) *AccountsAdUnitsListCall
List: List the ad units under the specified AdMob account.
- parent: Resource name of the account to list ad units for. Example: accounts/pub-9876543210987654.
type AccountsAppsListCall ¶
type AccountsAppsListCall struct {
// contains filtered or unexported fields
}
func (*AccountsAppsListCall) Context ¶
func (c *AccountsAppsListCall) Context(ctx context.Context) *AccountsAppsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*AccountsAppsListCall) Do ¶
func (c *AccountsAppsListCall) Do(opts ...googleapi.CallOption) (*ListAppsResponse, error)
Do executes the "admob.accounts.apps.list" call. Exactly one of *ListAppsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListAppsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*AccountsAppsListCall) Fields ¶
func (c *AccountsAppsListCall) Fields(s ...googleapi.Field) *AccountsAppsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsAppsListCall) Header ¶
func (c *AccountsAppsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsAppsListCall) IfNoneMatch ¶
func (c *AccountsAppsListCall) IfNoneMatch(entityTag string) *AccountsAppsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*AccountsAppsListCall) PageSize ¶
func (c *AccountsAppsListCall) PageSize(pageSize int64) *AccountsAppsListCall
PageSize sets the optional parameter "pageSize": The maximum number of apps to return. If unspecified or 0, at most 10,000 apps will be returned. The maximum value is 20,000; values above 20,000 will be coerced to 20,000.
func (*AccountsAppsListCall) PageToken ¶
func (c *AccountsAppsListCall) PageToken(pageToken string) *AccountsAppsListCall
PageToken sets the optional parameter "pageToken": The value returned by the last `ListAppsResponse`; indicates that this is a continuation of a prior `ListApps` call, and that the system should return the next page of data.
func (*AccountsAppsListCall) Pages ¶
func (c *AccountsAppsListCall) Pages(ctx context.Context, f func(*ListAppsResponse) error) error
Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.
type AccountsAppsService ¶
type AccountsAppsService struct {
// contains filtered or unexported fields
}
func NewAccountsAppsService ¶
func NewAccountsAppsService(s *Service) *AccountsAppsService
func (*AccountsAppsService) List ¶
func (r *AccountsAppsService) List(parent string) *AccountsAppsListCall
List: List the apps under the specified AdMob account.
- parent: Resource name of the account to list apps for. Example: accounts/pub-9876543210987654.
type AccountsGetCall ¶
type AccountsGetCall struct {
// contains filtered or unexported fields
}
func (*AccountsGetCall) Context ¶
func (c *AccountsGetCall) Context(ctx context.Context) *AccountsGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*AccountsGetCall) Do ¶
func (c *AccountsGetCall) Do(opts ...googleapi.CallOption) (*PublisherAccount, error)
Do executes the "admob.accounts.get" call. Exactly one of *PublisherAccount or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *PublisherAccount.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*AccountsGetCall) Fields ¶
func (c *AccountsGetCall) Fields(s ...googleapi.Field) *AccountsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsGetCall) Header ¶
func (c *AccountsGetCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsGetCall) IfNoneMatch ¶
func (c *AccountsGetCall) IfNoneMatch(entityTag string) *AccountsGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type AccountsListCall ¶
type AccountsListCall struct {
// contains filtered or unexported fields
}
func (*AccountsListCall) Context ¶
func (c *AccountsListCall) Context(ctx context.Context) *AccountsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*AccountsListCall) Do ¶
func (c *AccountsListCall) Do(opts ...googleapi.CallOption) (*ListPublisherAccountsResponse, error)
Do executes the "admob.accounts.list" call. Exactly one of *ListPublisherAccountsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListPublisherAccountsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*AccountsListCall) Fields ¶
func (c *AccountsListCall) Fields(s ...googleapi.Field) *AccountsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsListCall) Header ¶
func (c *AccountsListCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
func (*AccountsListCall) IfNoneMatch ¶
func (c *AccountsListCall) IfNoneMatch(entityTag string) *AccountsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*AccountsListCall) PageSize ¶
func (c *AccountsListCall) PageSize(pageSize int64) *AccountsListCall
PageSize sets the optional parameter "pageSize": Maximum number of accounts to return.
func (*AccountsListCall) PageToken ¶
func (c *AccountsListCall) PageToken(pageToken string) *AccountsListCall
PageToken sets the optional parameter "pageToken": The value returned by the last `ListPublisherAccountsResponse`; indicates that this is a continuation of a prior `ListPublisherAccounts` call, and that the system should return the next page of data.
func (*AccountsListCall) Pages ¶
func (c *AccountsListCall) Pages(ctx context.Context, f func(*ListPublisherAccountsResponse) error) error
Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.
type AccountsMediationReportGenerateCall ¶
type AccountsMediationReportGenerateCall struct {
// contains filtered or unexported fields
}
func (*AccountsMediationReportGenerateCall) Context ¶
func (c *AccountsMediationReportGenerateCall) Context(ctx context.Context) *AccountsMediationReportGenerateCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*AccountsMediationReportGenerateCall) Do ¶
func (c *AccountsMediationReportGenerateCall) Do(opts ...googleapi.CallOption) (*GenerateMediationReportResponse, error)
Do executes the "admob.accounts.mediationReport.generate" call. Exactly one of *GenerateMediationReportResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *GenerateMediationReportResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*AccountsMediationReportGenerateCall) Fields ¶
func (c *AccountsMediationReportGenerateCall) Fields(s ...googleapi.Field) *AccountsMediationReportGenerateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsMediationReportGenerateCall) Header ¶
func (c *AccountsMediationReportGenerateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type AccountsMediationReportService ¶
type AccountsMediationReportService struct {
// contains filtered or unexported fields
}
func NewAccountsMediationReportService ¶
func NewAccountsMediationReportService(s *Service) *AccountsMediationReportService
func (*AccountsMediationReportService) Generate ¶
func (r *AccountsMediationReportService) Generate(parent string, generatemediationreportrequest *GenerateMediationReportRequest) *AccountsMediationReportGenerateCall
Generate: Generates an AdMob mediation report based on the provided report specification. Returns result of a server-side streaming RPC. The result is returned in a sequence of responses.
- parent: Resource name of the account to generate the report for. Example: accounts/pub-9876543210987654.
type AccountsNetworkReportGenerateCall ¶
type AccountsNetworkReportGenerateCall struct {
// contains filtered or unexported fields
}
func (*AccountsNetworkReportGenerateCall) Context ¶
func (c *AccountsNetworkReportGenerateCall) Context(ctx context.Context) *AccountsNetworkReportGenerateCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*AccountsNetworkReportGenerateCall) Do ¶
func (c *AccountsNetworkReportGenerateCall) Do(opts ...googleapi.CallOption) (*GenerateNetworkReportResponse, error)
Do executes the "admob.accounts.networkReport.generate" call. Exactly one of *GenerateNetworkReportResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *GenerateNetworkReportResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*AccountsNetworkReportGenerateCall) Fields ¶
func (c *AccountsNetworkReportGenerateCall) Fields(s ...googleapi.Field) *AccountsNetworkReportGenerateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*AccountsNetworkReportGenerateCall) Header ¶
func (c *AccountsNetworkReportGenerateCall) Header() http.Header
Header returns an http.Header that can be modified by the caller to add HTTP headers to the request.
type AccountsNetworkReportService ¶
type AccountsNetworkReportService struct {
// contains filtered or unexported fields
}
func NewAccountsNetworkReportService ¶
func NewAccountsNetworkReportService(s *Service) *AccountsNetworkReportService
func (*AccountsNetworkReportService) Generate ¶
func (r *AccountsNetworkReportService) Generate(parent string, generatenetworkreportrequest *GenerateNetworkReportRequest) *AccountsNetworkReportGenerateCall
Generate: Generates an AdMob Network report based on the provided report specification. Returns result of a server-side streaming RPC. The result is returned in a sequence of responses.
- parent: Resource name of the account to generate the report for. Example: accounts/pub-9876543210987654.
type AccountsService ¶
type AccountsService struct { AdUnits *AccountsAdUnitsService Apps *AccountsAppsService MediationReport *AccountsMediationReportService NetworkReport *AccountsNetworkReportService // contains filtered or unexported fields }
func NewAccountsService ¶
func NewAccountsService(s *Service) *AccountsService
func (*AccountsService) Get ¶
func (r *AccountsService) Get(name string) *AccountsGetCall
Get: Gets information about the specified AdMob publisher account.
- name: Resource name of the publisher account to retrieve. Example: accounts/pub-9876543210987654.
func (*AccountsService) List ¶
func (r *AccountsService) List() *AccountsListCall
List: Lists the AdMob publisher account that was most recently signed in to from the AdMob UI. For more information, see https://support.google.com/admob/answer/10243672.
type AdUnit ¶
type AdUnit struct { // AdFormat: AdFormat of the ad unit. Possible values are as follows: // "APP_OPEN" - App Open ad format. "BANNER" - Banner ad format. // "BANNER_INTERSTITIAL" - Legacy format that can be used as either // banner or interstitial. This format can no longer be created but can // be targeted by mediation groups. "INTERSTITIAL" - A full screen ad. // Supported ad types are "RICH_MEDIA" and "VIDEO". "NATIVE" - Native ad // format. "REWARDED" - An ad that, once viewed, gets a callback // verifying the view so that a reward can be given to the user. // Supported ad types are "RICH_MEDIA" (interactive) and video where // video can not be excluded. "REWARDED_INTERSTITIAL" - Rewarded // Interstitial ad format. Only supports video ad type. See // https://support.google.com/admob/answer/9884467. AdFormat string `json:"adFormat,omitempty"` // AdTypes: Ad media type supported by this ad unit. Possible values as // follows: "RICH_MEDIA" - Text, image, and other non-video media. // "VIDEO" - Video media. AdTypes []string `json:"adTypes,omitempty"` // AdUnitId: The externally visible ID of the ad unit which can be used // to integrate with the AdMob SDK. This is a read only property. // Example: ca-app-pub-9876543210987654/0123456789 AdUnitId string `json:"adUnitId,omitempty"` // AppId: The externally visible ID of the app this ad unit is // associated with. Example: ca-app-pub-9876543210987654~0123456789 AppId string `json:"appId,omitempty"` // DisplayName: The display name of the ad unit as shown in the AdMob // UI, which is provided by the user. The maximum length allowed is 80 // characters. DisplayName string `json:"displayName,omitempty"` // Name: Resource name for this ad unit. Format is // accounts/{publisher_id}/adUnits/{ad_unit_id_fragment} Example: // accounts/pub-9876543210987654/adUnits/0123456789 Name string `json:"name,omitempty"` // ForceSendFields is a list of field names (e.g. "AdFormat") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "AdFormat") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
AdUnit: Describes an AdMob ad unit.
func (*AdUnit) MarshalJSON ¶
type App ¶
type App struct { // AppApprovalState: Output only. The approval state for the app. The // field is read-only. // // Possible values: // "APP_APPROVAL_STATE_UNSPECIFIED" - Default value for an unset // field. Do not use. // "ACTION_REQUIRED" - The app requires additional user action to be // approved. Please refer to // https://support.google.com/admob/answer/10564477 for details and next // steps. // "IN_REVIEW" - The app is pending review. // "APPROVED" - The app is approved and can serve ads. AppApprovalState string `json:"appApprovalState,omitempty"` // AppId: The externally visible ID of the app which can be used to // integrate with the AdMob SDK. This is a read only property. Example: // ca-app-pub-9876543210987654~0123456789 AppId string `json:"appId,omitempty"` // LinkedAppInfo: Immutable. The information for an app that is linked // to an app store. This field is present if and only if the app is // linked to an app store. LinkedAppInfo *AppLinkedAppInfo `json:"linkedAppInfo,omitempty"` // ManualAppInfo: The information for an app that is not linked to any // app store. After an app is linked, this information is still // retrivable. If no name is provided for the app upon creation, a // placeholder name will be used. ManualAppInfo *AppManualAppInfo `json:"manualAppInfo,omitempty"` // Name: Resource name for this app. Format is // accounts/{publisher_id}/apps/{app_id_fragment} Example: // accounts/pub-9876543210987654/apps/0123456789 Name string `json:"name,omitempty"` // Platform: Describes the platform of the app. Limited to "IOS" and // "ANDROID". Platform string `json:"platform,omitempty"` // ForceSendFields is a list of field names (e.g. "AppApprovalState") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "AppApprovalState") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
App: Describes an AdMob app for a specific platform (For example: Android or iOS).
func (*App) MarshalJSON ¶
type AppLinkedAppInfo ¶
type AppLinkedAppInfo struct { // AppStoreId: The app store ID of the app; present if and only if the // app is linked to an app store. If the app is added to the Google Play // store, it will be the application ID of the app. For example: // "com.example.myapp". See // https://developer.android.com/studio/build/application-id. If the app // is added to the Apple App Store, it will be app store ID. For example // "105169111". Note that setting the app store id is considered an // irreversible action. Once an app is linked, it cannot be unlinked. AppStoreId string `json:"appStoreId,omitempty"` // DisplayName: Output only. Display name of the app as it appears in // the app store. This is an output-only field, and may be empty if the // app cannot be found in the store. DisplayName string `json:"displayName,omitempty"` // ForceSendFields is a list of field names (e.g. "AppStoreId") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "AppStoreId") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
AppLinkedAppInfo: Information from the app store if the app is linked to an app store.
func (*AppLinkedAppInfo) MarshalJSON ¶
func (s *AppLinkedAppInfo) MarshalJSON() ([]byte, error)
type AppManualAppInfo ¶
type AppManualAppInfo struct { // DisplayName: The display name of the app as shown in the AdMob UI, // which is provided by the user. The maximum length allowed is 80 // characters. DisplayName string `json:"displayName,omitempty"` // ForceSendFields is a list of field names (e.g. "DisplayName") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DisplayName") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
AppManualAppInfo: Information provided for manual apps which are not linked to an application store (Example: Google Play, App Store).
func (*AppManualAppInfo) MarshalJSON ¶
func (s *AppManualAppInfo) MarshalJSON() ([]byte, error)
type Date ¶
type Date struct { // Day: Day of a month. Must be from 1 to 31 and valid for the year and // month, or 0 to specify a year by itself or a year and month where the // day isn't significant. Day int64 `json:"day,omitempty"` // Month: Month of a year. Must be from 1 to 12, or 0 to specify a year // without a month and day. Month int64 `json:"month,omitempty"` // Year: Year of the date. Must be from 1 to 9999, or 0 to specify a // date without a year. Year int64 `json:"year,omitempty"` // ForceSendFields is a list of field names (e.g. "Day") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Day") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
Date: Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
func (*Date) MarshalJSON ¶
type DateRange ¶
type DateRange struct { // EndDate: End date of the date range, inclusive. Must be greater than // or equal to the start date. EndDate *Date `json:"endDate,omitempty"` // StartDate: Start date of the date range, inclusive. Must be less than // or equal to the end date. StartDate *Date `json:"startDate,omitempty"` // ForceSendFields is a list of field names (e.g. "EndDate") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "EndDate") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
DateRange: Specification of a single date range. Both dates are inclusive.
func (*DateRange) MarshalJSON ¶
type GenerateMediationReportRequest ¶
type GenerateMediationReportRequest struct { // ReportSpec: Network report specification. ReportSpec *MediationReportSpec `json:"reportSpec,omitempty"` // ForceSendFields is a list of field names (e.g. "ReportSpec") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ReportSpec") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
GenerateMediationReportRequest: Request to generate an AdMob mediation report.
func (*GenerateMediationReportRequest) MarshalJSON ¶
func (s *GenerateMediationReportRequest) MarshalJSON() ([]byte, error)
type GenerateMediationReportResponse ¶
type GenerateMediationReportResponse struct { // warnings about the data. Footer *ReportFooter `json:"footer,omitempty"` // Header: Report generation settings that describes the report // contents, such as the report date range and localization settings. Header *ReportHeader `json:"header,omitempty"` // Row: Actual report data. Row *ReportRow `json:"row,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Footer") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Footer") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
GenerateMediationReportResponse: The streaming response for the AdMob mediation report where the first response contains the report header, then a stream of row responses, and finally a footer as the last response message. For example: [{ "header": { "date_range": { "start_date": {"year": 2018, "month": 9, "day": 1}, "end_date": {"year": 2018, "month": 9, "day": 1} }, "localization_settings": { "currency_code": "USD", "language_code": "en-US" } } }, { "row": { "dimension_values": { "DATE": {"value": "20180918"}, "APP": { "value": "ca-app-pub-8123415297019784~1001342552", "display_label": "My app name!" } }, "metric_values": { "ESTIMATED_EARNINGS": {"decimal_value": "1324746"} } } }, { "footer": {"matching_row_count": 1} }]
func (*GenerateMediationReportResponse) MarshalJSON ¶
func (s *GenerateMediationReportResponse) MarshalJSON() ([]byte, error)
type GenerateNetworkReportRequest ¶
type GenerateNetworkReportRequest struct { // ReportSpec: Network report specification. ReportSpec *NetworkReportSpec `json:"reportSpec,omitempty"` // ForceSendFields is a list of field names (e.g. "ReportSpec") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "ReportSpec") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
GenerateNetworkReportRequest: Request to generate an AdMob Network report.
func (*GenerateNetworkReportRequest) MarshalJSON ¶
func (s *GenerateNetworkReportRequest) MarshalJSON() ([]byte, error)
type GenerateNetworkReportResponse ¶
type GenerateNetworkReportResponse struct { // warnings about the data. Footer *ReportFooter `json:"footer,omitempty"` // Header: Report generation settings that describes the report // contents, such as the report date range and localization settings. Header *ReportHeader `json:"header,omitempty"` // Row: Actual report data. Row *ReportRow `json:"row,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Footer") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Footer") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
GenerateNetworkReportResponse: The streaming response for the AdMob Network report where the first response contains the report header, then a stream of row responses, and finally a footer as the last response message. For example: [{ "header": { "dateRange": { "startDate": {"year": 2018, "month": 9, "day": 1}, "endDate": {"year": 2018, "month": 9, "day": 1} }, "localizationSettings": { "currencyCode": "USD", "languageCode": "en-US" } } }, { "row": { "dimensionValues": { "DATE": {"value": "20180918"}, "APP": { "value": "ca-app-pub-8123415297019784~1001342552", displayLabel: "My app name!" } }, "metricValues": { "ESTIMATED_EARNINGS": {"microsValue": 6500000} } } }, { "footer": {"matchingRowCount": 1} }]
func (*GenerateNetworkReportResponse) MarshalJSON ¶
func (s *GenerateNetworkReportResponse) MarshalJSON() ([]byte, error)
type ListAdUnitsResponse ¶
type ListAdUnitsResponse struct { // AdUnits: The resulting ad units for the requested account. AdUnits []*AdUnit `json:"adUnits,omitempty"` // NextPageToken: If not empty, indicates that there may be more ad // units for the request; this value should be passed in a new // `ListAdUnitsRequest`. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "AdUnits") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "AdUnits") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListAdUnitsResponse: Response for the ad units list request.
func (*ListAdUnitsResponse) MarshalJSON ¶
func (s *ListAdUnitsResponse) MarshalJSON() ([]byte, error)
type ListAppsResponse ¶
type ListAppsResponse struct { // Apps: The resulting apps for the requested account. Apps []*App `json:"apps,omitempty"` // NextPageToken: If not empty, indicates that there may be more apps // for the request; this value should be passed in a new // `ListAppsRequest`. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Apps") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Apps") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListAppsResponse: Response for the apps list request.
func (*ListAppsResponse) MarshalJSON ¶
func (s *ListAppsResponse) MarshalJSON() ([]byte, error)
type ListPublisherAccountsResponse ¶
type ListPublisherAccountsResponse struct { // Account: Publisher that the client credentials can access. Account []*PublisherAccount `json:"account,omitempty"` // NextPageToken: If not empty, indicates that there might be more // accounts for the request; you must pass this value in a new // `ListPublisherAccountsRequest`. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Account") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Account") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ListPublisherAccountsResponse: Response for the publisher account list request.
func (*ListPublisherAccountsResponse) MarshalJSON ¶
func (s *ListPublisherAccountsResponse) MarshalJSON() ([]byte, error)
type LocalizationSettings ¶
type LocalizationSettings struct { // CurrencyCode: Currency code of the earning related metrics, which is // the 3-letter code defined in ISO 4217. The daily average rate is used // for the currency conversion. Defaults to the account currency code if // unspecified. CurrencyCode string `json:"currencyCode,omitempty"` // LanguageCode: Language used for any localized text, such as some // dimension value display labels. The language tag defined in the IETF // BCP47. Defaults to 'en-US' if unspecified. LanguageCode string `json:"languageCode,omitempty"` // ForceSendFields is a list of field names (e.g. "CurrencyCode") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "CurrencyCode") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
LocalizationSettings: Localization settings for reports, such as currency and language. It affects how metrics are calculated.
func (*LocalizationSettings) MarshalJSON ¶
func (s *LocalizationSettings) MarshalJSON() ([]byte, error)
type MediationReportSpec ¶
type MediationReportSpec struct { // DateRange: The date range for which the report is generated. DateRange *DateRange `json:"dateRange,omitempty"` // DimensionFilters: Describes which report rows to match based on their // dimension values. DimensionFilters []*MediationReportSpecDimensionFilter `json:"dimensionFilters,omitempty"` // Dimensions: List of dimensions of the report. The value combination // of these dimensions determines the row of the report. If no // dimensions are specified, the report returns a single row of // requested metrics for the entire account. // // Possible values: // "DIMENSION_UNSPECIFIED" - Default value for an unset field. Do not // use. // "DATE" - A date in the YYYYMMDD format (for example, "20210701"). // Requests can specify at most one time dimension. // "MONTH" - A month in the YYYYMM format (for example, "202107"). // Requests can specify at most one time dimension. // "WEEK" - The date of the first day of a week in the YYYYMMDD format // (for example, "20210701"). Requests can specify at most one time // dimension. // "AD_SOURCE" - The [unique ID of the ad // source](/admob/api/v1/ad_sources) (for example, "5450213213286189855" // and "AdMob Network" as label value). // "AD_SOURCE_INSTANCE" - The unique ID of the ad source instance (for // example, "ca-app-pub-1234:asi:5678" and "AdMob (default)" as label // value). // "AD_UNIT" - The unique ID of the ad unit (for example, // "ca-app-pub-1234/8790"). If AD_UNIT dimension is specified, then APP // is included automatically. // "APP" - The unique ID of the mobile application (for example, // "ca-app-pub-1234~1234"). // "MEDIATION_GROUP" - The unique ID of the mediation group (for // example, "ca-app-pub-1234:mg:1234" and "AdMob (default)" as label // value). // "COUNTRY" - CLDR country code of the place where the ad // views/clicks occur (for example, "US" or "FR"). This is a geography // dimension. // "FORMAT" - Format of the ad unit (for example, "banner", "native"), // an ad delivery dimension. // "PLATFORM" - Mobile OS platform of the app (for example, "Android" // or "iOS"). // "MOBILE_OS_VERSION" - Mobile operating system version, e.g. "iOS // 13.5.1". // "GMA_SDK_VERSION" - GMA SDK version, e.g. "iOS 7.62.0". // "APP_VERSION_NAME" - For Android, the app version name can be found // in versionName in PackageInfo. For iOS, the app version name can be // found in CFBundleShortVersionString. // "SERVING_RESTRICTION" - Restriction mode for ads serving (e.g. // "Non-personalized ads"). Dimensions []string `json:"dimensions,omitempty"` // LocalizationSettings: Localization settings of the report. LocalizationSettings *LocalizationSettings `json:"localizationSettings,omitempty"` // MaxReportRows: Maximum number of report data rows to return. If the // value is not set, the API returns as many rows as possible, up to // 100000. Acceptable values are 1-100000, inclusive. Values larger than // 100000 return an error. MaxReportRows int64 `json:"maxReportRows,omitempty"` // Metrics: List of metrics of the report. A report must specify at // least one metric. // // Possible values: // "METRIC_UNSPECIFIED" - Default value for an unset field. Do not // use. // "AD_REQUESTS" - The number of requests. The value is an integer. // "CLICKS" - The number of times a user clicks an ad. The value is an // integer. // "ESTIMATED_EARNINGS" - The estimated earnings of the AdMob // publisher. The currency unit (USD, EUR, or other) of the earning // metrics are determined by the localization setting for currency. The // amount is in micros. For example, $6.50 would be represented as // 6500000. Estimated earnings per mediation group and per ad source // instance level is supported dating back to October 20, 2019. // Third-party estimated earnings will show 0 for dates prior to October // 20, 2019. // "IMPRESSIONS" - The total number of ads shown to users. The value // is an integer. // "IMPRESSION_CTR" - The ratio of clicks over impressions. The value // is a double precision (approximate) decimal value. // "MATCHED_REQUESTS" - The number of times ads are returned in // response to a request. The value is an integer. // "MATCH_RATE" - The ratio of matched ad requests over the total ad // requests. The value is a double precision (approximate) decimal // value. // "OBSERVED_ECPM" - The third-party ad network's estimated average // eCPM. The currency unit (USD, EUR, or other) of the earning metrics // are determined by the localization setting for currency. The amount // is in micros. For example, $2.30 would be represented as 2300000. The // estimated average eCPM per mediation group and per ad source instance // level is supported dating back to October 20, 2019. Third-party // estimated average eCPM will show 0 for dates prior to October 20, // 2019. Metrics []string `json:"metrics,omitempty"` // SortConditions: Describes the sorting of report rows. The order of // the condition in the list defines its precedence; the earlier the // condition, the higher its precedence. If no sort conditions are // specified, the row ordering is undefined. SortConditions []*MediationReportSpecSortCondition `json:"sortConditions,omitempty"` // TimeZone: A report time zone. Accepts an IANA TZ name values, such as // "America/Los_Angeles." If no time zone is defined, the account // default takes effect. Check default value by the get account action. // **Warning:** The "America/Los_Angeles" is the only supported value at // the moment. TimeZone string `json:"timeZone,omitempty"` // ForceSendFields is a list of field names (e.g. "DateRange") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DateRange") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
MediationReportSpec: The specification for generating an AdMob Mediation report. For example, the specification to get observed ECPM sliced by ad source and app for the 'US' and 'CN' countries can look like the following example: { "date_range": { "start_date": {"year": 2021, "month": 9, "day": 1}, "end_date": {"year": 2021, "month": 9, "day": 30} }, "dimensions": ["AD_SOURCE", "APP", "COUNTRY"], "metrics": ["OBSERVED_ECPM"], "dimension_filters": [ { "dimension": "COUNTRY", "matches_any": {"values": [{"value": "US", "value": "CN"}]} } ], "sort_conditions": [ {"dimension":"APP", order: "ASCENDING"} ], "localization_settings": { "currency_code": "USD", "language_code": "en-US" } } For a better understanding, you can treat the preceding specification like the following pseudo SQL: SELECT AD_SOURCE, APP, COUNTRY, OBSERVED_ECPM FROM MEDIATION_REPORT WHERE DATE >= '2021-09-01' AND DATE <= '2021-09-30' AND COUNTRY IN ('US', 'CN') GROUP BY AD_SOURCE, APP, COUNTRY ORDER BY APP ASC;
func (*MediationReportSpec) MarshalJSON ¶
func (s *MediationReportSpec) MarshalJSON() ([]byte, error)
type MediationReportSpecDimensionFilter ¶
type MediationReportSpecDimensionFilter struct { // Dimension: Applies the filter criterion to the specified dimension. // // Possible values: // "DIMENSION_UNSPECIFIED" - Default value for an unset field. Do not // use. // "DATE" - A date in the YYYYMMDD format (for example, "20210701"). // Requests can specify at most one time dimension. // "MONTH" - A month in the YYYYMM format (for example, "202107"). // Requests can specify at most one time dimension. // "WEEK" - The date of the first day of a week in the YYYYMMDD format // (for example, "20210701"). Requests can specify at most one time // dimension. // "AD_SOURCE" - The [unique ID of the ad // source](/admob/api/v1/ad_sources) (for example, "5450213213286189855" // and "AdMob Network" as label value). // "AD_SOURCE_INSTANCE" - The unique ID of the ad source instance (for // example, "ca-app-pub-1234:asi:5678" and "AdMob (default)" as label // value). // "AD_UNIT" - The unique ID of the ad unit (for example, // "ca-app-pub-1234/8790"). If AD_UNIT dimension is specified, then APP // is included automatically. // "APP" - The unique ID of the mobile application (for example, // "ca-app-pub-1234~1234"). // "MEDIATION_GROUP" - The unique ID of the mediation group (for // example, "ca-app-pub-1234:mg:1234" and "AdMob (default)" as label // value). // "COUNTRY" - CLDR country code of the place where the ad // views/clicks occur (for example, "US" or "FR"). This is a geography // dimension. // "FORMAT" - Format of the ad unit (for example, "banner", "native"), // an ad delivery dimension. // "PLATFORM" - Mobile OS platform of the app (for example, "Android" // or "iOS"). // "MOBILE_OS_VERSION" - Mobile operating system version, e.g. "iOS // 13.5.1". // "GMA_SDK_VERSION" - GMA SDK version, e.g. "iOS 7.62.0". // "APP_VERSION_NAME" - For Android, the app version name can be found // in versionName in PackageInfo. For iOS, the app version name can be // found in CFBundleShortVersionString. // "SERVING_RESTRICTION" - Restriction mode for ads serving (e.g. // "Non-personalized ads"). Dimension string `json:"dimension,omitempty"` // MatchesAny: Matches a row if its value for the specified dimension is // in one of the values specified in this condition. MatchesAny *StringList `json:"matchesAny,omitempty"` // ForceSendFields is a list of field names (e.g. "Dimension") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Dimension") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
MediationReportSpecDimensionFilter: Describes which report rows to match based on their dimension values.
func (*MediationReportSpecDimensionFilter) MarshalJSON ¶
func (s *MediationReportSpecDimensionFilter) MarshalJSON() ([]byte, error)
type MediationReportSpecSortCondition ¶
type MediationReportSpecSortCondition struct { // Dimension: Sort by the specified dimension. // // Possible values: // "DIMENSION_UNSPECIFIED" - Default value for an unset field. Do not // use. // "DATE" - A date in the YYYYMMDD format (for example, "20210701"). // Requests can specify at most one time dimension. // "MONTH" - A month in the YYYYMM format (for example, "202107"). // Requests can specify at most one time dimension. // "WEEK" - The date of the first day of a week in the YYYYMMDD format // (for example, "20210701"). Requests can specify at most one time // dimension. // "AD_SOURCE" - The [unique ID of the ad // source](/admob/api/v1/ad_sources) (for example, "5450213213286189855" // and "AdMob Network" as label value). // "AD_SOURCE_INSTANCE" - The unique ID of the ad source instance (for // example, "ca-app-pub-1234:asi:5678" and "AdMob (default)" as label // value). // "AD_UNIT" - The unique ID of the ad unit (for example, // "ca-app-pub-1234/8790"). If AD_UNIT dimension is specified, then APP // is included automatically. // "APP" - The unique ID of the mobile application (for example, // "ca-app-pub-1234~1234"). // "MEDIATION_GROUP" - The unique ID of the mediation group (for // example, "ca-app-pub-1234:mg:1234" and "AdMob (default)" as label // value). // "COUNTRY" - CLDR country code of the place where the ad // views/clicks occur (for example, "US" or "FR"). This is a geography // dimension. // "FORMAT" - Format of the ad unit (for example, "banner", "native"), // an ad delivery dimension. // "PLATFORM" - Mobile OS platform of the app (for example, "Android" // or "iOS"). // "MOBILE_OS_VERSION" - Mobile operating system version, e.g. "iOS // 13.5.1". // "GMA_SDK_VERSION" - GMA SDK version, e.g. "iOS 7.62.0". // "APP_VERSION_NAME" - For Android, the app version name can be found // in versionName in PackageInfo. For iOS, the app version name can be // found in CFBundleShortVersionString. // "SERVING_RESTRICTION" - Restriction mode for ads serving (e.g. // "Non-personalized ads"). Dimension string `json:"dimension,omitempty"` // Metric: Sort by the specified metric. // // Possible values: // "METRIC_UNSPECIFIED" - Default value for an unset field. Do not // use. // "AD_REQUESTS" - The number of requests. The value is an integer. // "CLICKS" - The number of times a user clicks an ad. The value is an // integer. // "ESTIMATED_EARNINGS" - The estimated earnings of the AdMob // publisher. The currency unit (USD, EUR, or other) of the earning // metrics are determined by the localization setting for currency. The // amount is in micros. For example, $6.50 would be represented as // 6500000. Estimated earnings per mediation group and per ad source // instance level is supported dating back to October 20, 2019. // Third-party estimated earnings will show 0 for dates prior to October // 20, 2019. // "IMPRESSIONS" - The total number of ads shown to users. The value // is an integer. // "IMPRESSION_CTR" - The ratio of clicks over impressions. The value // is a double precision (approximate) decimal value. // "MATCHED_REQUESTS" - The number of times ads are returned in // response to a request. The value is an integer. // "MATCH_RATE" - The ratio of matched ad requests over the total ad // requests. The value is a double precision (approximate) decimal // value. // "OBSERVED_ECPM" - The third-party ad network's estimated average // eCPM. The currency unit (USD, EUR, or other) of the earning metrics // are determined by the localization setting for currency. The amount // is in micros. For example, $2.30 would be represented as 2300000. The // estimated average eCPM per mediation group and per ad source instance // level is supported dating back to October 20, 2019. Third-party // estimated average eCPM will show 0 for dates prior to October 20, // 2019. Metric string `json:"metric,omitempty"` // Order: Sorting order of the dimension or metric. // // Possible values: // "SORT_ORDER_UNSPECIFIED" - Default value for an unset field. Do not // use. // "ASCENDING" - Sort dimension value or metric value in ascending // order. // "DESCENDING" - Sort dimension value or metric value in descending // order. Order string `json:"order,omitempty"` // ForceSendFields is a list of field names (e.g. "Dimension") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Dimension") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
MediationReportSpecSortCondition: Sorting direction to be applied on a dimension or a metric.
func (*MediationReportSpecSortCondition) MarshalJSON ¶
func (s *MediationReportSpecSortCondition) MarshalJSON() ([]byte, error)
type NetworkReportSpec ¶
type NetworkReportSpec struct { // DateRange: The date range for which the report is generated. DateRange *DateRange `json:"dateRange,omitempty"` // DimensionFilters: Describes which report rows to match based on their // dimension values. DimensionFilters []*NetworkReportSpecDimensionFilter `json:"dimensionFilters,omitempty"` // Dimensions: List of dimensions of the report. The value combination // of these dimensions determines the row of the report. If no // dimensions are specified, the report returns a single row of // requested metrics for the entire account. // // Possible values: // "DIMENSION_UNSPECIFIED" - Default value for an unset field. Do not // use. // "DATE" - A date in the YYYYMMDD format (for example, "20210701"). // Requests can specify at most one time dimension. // "MONTH" - A month in the YYYYMM format (for example, "202107"). // Requests can specify at most one time dimension. // "WEEK" - The date of the first day of a week in the YYYYMMDD format // (for example, "20210701"). Requests can specify at most one time // dimension. // "AD_UNIT" - The unique ID of the ad unit (for example, // "ca-app-pub-1234/1234"). If AD_UNIT dimension is specified, then APP // is included automatically. // "APP" - The unique ID of the mobile application (for example, // "ca-app-pub-1234~1234"). // "AD_TYPE" - Type of the ad (for example, "text" or "image"), an ad // delivery dimension. **Warning:** The dimension is incompatible with // [AD_REQUESTS](#Metric.ENUM_VALUES.AD_REQUESTS), // [MATCH_RATE](#Metric.ENUM_VALUES.MATCH_RATE) and // [IMPRESSION_RPM](#Metric.ENUM_VALUES.IMPRESSION_RPM) metrics. // "COUNTRY" - CLDR country code of the place where the ad // views/clicks occur (for example, "US" or "FR"). This is a geography // dimension. // "FORMAT" - Format of the ad unit (for example, "banner", "native"), // an ad delivery dimension. // "PLATFORM" - Mobile OS platform of the app (for example, "Android" // or "iOS"). // "MOBILE_OS_VERSION" - Mobile operating system version, e.g. "iOS // 13.5.1". // "GMA_SDK_VERSION" - GMA SDK version, e.g. "iOS 7.62.0". // "APP_VERSION_NAME" - For Android, the app version name can be found // in versionName in PackageInfo. For iOS, the app version name can be // found in CFBundleShortVersionString. // "SERVING_RESTRICTION" - Restriction mode for ads serving (e.g. // "Non-personalized ads"). Dimensions []string `json:"dimensions,omitempty"` // LocalizationSettings: Localization settings of the report. LocalizationSettings *LocalizationSettings `json:"localizationSettings,omitempty"` // MaxReportRows: Maximum number of report data rows to return. If the // value is not set, the API returns as many rows as possible, up to // 100000. Acceptable values are 1-100000, inclusive. Values larger than // 100000 return an error. MaxReportRows int64 `json:"maxReportRows,omitempty"` // Metrics: List of metrics of the report. A report must specify at // least one metric. // // Possible values: // "METRIC_UNSPECIFIED" - Default value for an unset field. Do not // use. // "AD_REQUESTS" - The number of ad requests. The value is an integer. // **Warning:** The metric is incompatible with // [AD_TYPE](#Dimension.ENUM_VALUES.AD_TYPE) dimension. // "CLICKS" - The number of times a user clicks an ad. The value is an // integer. // "ESTIMATED_EARNINGS" - The estimated earnings of the AdMob // publisher. The currency unit (USD, EUR, or other) of the earning // metrics are determined by the localization setting for currency. The // amount is in micros. For example, $6.50 would be represented as // 6500000. // "IMPRESSIONS" - The total number of ads shown to users. The value // is an integer. // "IMPRESSION_CTR" - The ratio of clicks over impressions. The value // is a double precision (approximate) decimal value. // "IMPRESSION_RPM" - The estimated earnings per thousand ad // impressions. The value is in micros. For example, $1.03 would be // represented as 1030000. Equivalent to eCPM in the AdMob UI. // **Warning:** The metric is incompatible with // [AD_TYPE](#Dimension.ENUM_VALUES.AD_TYPE) dimension. // "MATCHED_REQUESTS" - The number of times ads are returned in // response to a request. The value is an integer. // "MATCH_RATE" - The ratio of matched ad requests over the total ad // requests. The value is a double precision (approximate) decimal // value. **Warning:** The metric is incompatible with // [AD_TYPE](#Dimension.ENUM_VALUES.AD_TYPE) dimension. // "SHOW_RATE" - The ratio of ads that are displayed over ads that are // returned, defined as impressions / matched requests. The value is a // double precision (approximate) decimal value. Metrics []string `json:"metrics,omitempty"` // SortConditions: Describes the sorting of report rows. The order of // the condition in the list defines its precedence; the earlier the // condition, the higher its precedence. If no sort conditions are // specified, the row ordering is undefined. SortConditions []*NetworkReportSpecSortCondition `json:"sortConditions,omitempty"` // TimeZone: A report time zone. Accepts an IANA TZ name values, such as // "America/Los_Angeles." If no time zone is defined, the account // default takes effect. Check default value by the get account action. // **Warning:** The "America/Los_Angeles" is the only supported value at // the moment. TimeZone string `json:"timeZone,omitempty"` // ForceSendFields is a list of field names (e.g. "DateRange") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DateRange") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
NetworkReportSpec: The specification for generating an AdMob Network report. For example, the specification to get clicks and estimated earnings for only the 'US' and 'CN' countries can look like the following example: { 'date_range': { 'start_date': {'year': 2021, 'month': 9, 'day': 1}, 'end_date': {'year': 2021, 'month': 9, 'day': 30} }, 'dimensions': ['DATE', 'APP', 'COUNTRY'], 'metrics': ['CLICKS', 'ESTIMATED_EARNINGS'], 'dimension_filters': [ { 'dimension': 'COUNTRY', 'matches_any': {'values': [{'value': 'US', 'value': 'CN'}]} } ], 'sort_conditions': [ {'dimension':'APP', order: 'ASCENDING'}, {'metric':'CLICKS', order: 'DESCENDING'} ], 'localization_settings': { 'currency_code': 'USD', 'language_code': 'en-US' } } For a better understanding, you can treat the preceding specification like the following pseudo SQL: SELECT DATE, APP, COUNTRY, CLICKS, ESTIMATED_EARNINGS FROM NETWORK_REPORT WHERE DATE >= '2021-09-01' AND DATE <= '2021-09-30' AND COUNTRY IN ('US', 'CN') GROUP BY DATE, APP, COUNTRY ORDER BY APP ASC, CLICKS DESC;
func (*NetworkReportSpec) MarshalJSON ¶
func (s *NetworkReportSpec) MarshalJSON() ([]byte, error)
type NetworkReportSpecDimensionFilter ¶
type NetworkReportSpecDimensionFilter struct { // Dimension: Applies the filter criterion to the specified dimension. // // Possible values: // "DIMENSION_UNSPECIFIED" - Default value for an unset field. Do not // use. // "DATE" - A date in the YYYYMMDD format (for example, "20210701"). // Requests can specify at most one time dimension. // "MONTH" - A month in the YYYYMM format (for example, "202107"). // Requests can specify at most one time dimension. // "WEEK" - The date of the first day of a week in the YYYYMMDD format // (for example, "20210701"). Requests can specify at most one time // dimension. // "AD_UNIT" - The unique ID of the ad unit (for example, // "ca-app-pub-1234/1234"). If AD_UNIT dimension is specified, then APP // is included automatically. // "APP" - The unique ID of the mobile application (for example, // "ca-app-pub-1234~1234"). // "AD_TYPE" - Type of the ad (for example, "text" or "image"), an ad // delivery dimension. **Warning:** The dimension is incompatible with // [AD_REQUESTS](#Metric.ENUM_VALUES.AD_REQUESTS), // [MATCH_RATE](#Metric.ENUM_VALUES.MATCH_RATE) and // [IMPRESSION_RPM](#Metric.ENUM_VALUES.IMPRESSION_RPM) metrics. // "COUNTRY" - CLDR country code of the place where the ad // views/clicks occur (for example, "US" or "FR"). This is a geography // dimension. // "FORMAT" - Format of the ad unit (for example, "banner", "native"), // an ad delivery dimension. // "PLATFORM" - Mobile OS platform of the app (for example, "Android" // or "iOS"). // "MOBILE_OS_VERSION" - Mobile operating system version, e.g. "iOS // 13.5.1". // "GMA_SDK_VERSION" - GMA SDK version, e.g. "iOS 7.62.0". // "APP_VERSION_NAME" - For Android, the app version name can be found // in versionName in PackageInfo. For iOS, the app version name can be // found in CFBundleShortVersionString. // "SERVING_RESTRICTION" - Restriction mode for ads serving (e.g. // "Non-personalized ads"). Dimension string `json:"dimension,omitempty"` // MatchesAny: Matches a row if its value for the specified dimension is // in one of the values specified in this condition. MatchesAny *StringList `json:"matchesAny,omitempty"` // ForceSendFields is a list of field names (e.g. "Dimension") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Dimension") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
NetworkReportSpecDimensionFilter: Describes which report rows to match based on their dimension values.
func (*NetworkReportSpecDimensionFilter) MarshalJSON ¶
func (s *NetworkReportSpecDimensionFilter) MarshalJSON() ([]byte, error)
type NetworkReportSpecSortCondition ¶
type NetworkReportSpecSortCondition struct { // Dimension: Sort by the specified dimension. // // Possible values: // "DIMENSION_UNSPECIFIED" - Default value for an unset field. Do not // use. // "DATE" - A date in the YYYYMMDD format (for example, "20210701"). // Requests can specify at most one time dimension. // "MONTH" - A month in the YYYYMM format (for example, "202107"). // Requests can specify at most one time dimension. // "WEEK" - The date of the first day of a week in the YYYYMMDD format // (for example, "20210701"). Requests can specify at most one time // dimension. // "AD_UNIT" - The unique ID of the ad unit (for example, // "ca-app-pub-1234/1234"). If AD_UNIT dimension is specified, then APP // is included automatically. // "APP" - The unique ID of the mobile application (for example, // "ca-app-pub-1234~1234"). // "AD_TYPE" - Type of the ad (for example, "text" or "image"), an ad // delivery dimension. **Warning:** The dimension is incompatible with // [AD_REQUESTS](#Metric.ENUM_VALUES.AD_REQUESTS), // [MATCH_RATE](#Metric.ENUM_VALUES.MATCH_RATE) and // [IMPRESSION_RPM](#Metric.ENUM_VALUES.IMPRESSION_RPM) metrics. // "COUNTRY" - CLDR country code of the place where the ad // views/clicks occur (for example, "US" or "FR"). This is a geography // dimension. // "FORMAT" - Format of the ad unit (for example, "banner", "native"), // an ad delivery dimension. // "PLATFORM" - Mobile OS platform of the app (for example, "Android" // or "iOS"). // "MOBILE_OS_VERSION" - Mobile operating system version, e.g. "iOS // 13.5.1". // "GMA_SDK_VERSION" - GMA SDK version, e.g. "iOS 7.62.0". // "APP_VERSION_NAME" - For Android, the app version name can be found // in versionName in PackageInfo. For iOS, the app version name can be // found in CFBundleShortVersionString. // "SERVING_RESTRICTION" - Restriction mode for ads serving (e.g. // "Non-personalized ads"). Dimension string `json:"dimension,omitempty"` // Metric: Sort by the specified metric. // // Possible values: // "METRIC_UNSPECIFIED" - Default value for an unset field. Do not // use. // "AD_REQUESTS" - The number of ad requests. The value is an integer. // **Warning:** The metric is incompatible with // [AD_TYPE](#Dimension.ENUM_VALUES.AD_TYPE) dimension. // "CLICKS" - The number of times a user clicks an ad. The value is an // integer. // "ESTIMATED_EARNINGS" - The estimated earnings of the AdMob // publisher. The currency unit (USD, EUR, or other) of the earning // metrics are determined by the localization setting for currency. The // amount is in micros. For example, $6.50 would be represented as // 6500000. // "IMPRESSIONS" - The total number of ads shown to users. The value // is an integer. // "IMPRESSION_CTR" - The ratio of clicks over impressions. The value // is a double precision (approximate) decimal value. // "IMPRESSION_RPM" - The estimated earnings per thousand ad // impressions. The value is in micros. For example, $1.03 would be // represented as 1030000. Equivalent to eCPM in the AdMob UI. // **Warning:** The metric is incompatible with // [AD_TYPE](#Dimension.ENUM_VALUES.AD_TYPE) dimension. // "MATCHED_REQUESTS" - The number of times ads are returned in // response to a request. The value is an integer. // "MATCH_RATE" - The ratio of matched ad requests over the total ad // requests. The value is a double precision (approximate) decimal // value. **Warning:** The metric is incompatible with // [AD_TYPE](#Dimension.ENUM_VALUES.AD_TYPE) dimension. // "SHOW_RATE" - The ratio of ads that are displayed over ads that are // returned, defined as impressions / matched requests. The value is a // double precision (approximate) decimal value. Metric string `json:"metric,omitempty"` // Order: Sorting order of the dimension or metric. // // Possible values: // "SORT_ORDER_UNSPECIFIED" - Default value for an unset field. Do not // use. // "ASCENDING" - Sort dimension value or metric value in ascending // order. // "DESCENDING" - Sort dimension value or metric value in descending // order. Order string `json:"order,omitempty"` // ForceSendFields is a list of field names (e.g. "Dimension") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Dimension") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
NetworkReportSpecSortCondition: Sorting direction to be applied on a dimension or a metric.
func (*NetworkReportSpecSortCondition) MarshalJSON ¶
func (s *NetworkReportSpecSortCondition) MarshalJSON() ([]byte, error)
type PublisherAccount ¶
type PublisherAccount struct { // CurrencyCode: Currency code of the earning-related metrics, which is // the 3-letter code defined in ISO 4217. The daily average rate is used // for the currency conversion. CurrencyCode string `json:"currencyCode,omitempty"` // Name: Resource name of this account. Format is // accounts/{publisher_id}. Name string `json:"name,omitempty"` // PublisherId: The unique ID by which this publisher account can be // identified in the API requests (for example, pub-1234567890). PublisherId string `json:"publisherId,omitempty"` // ReportingTimeZone: The time zone that is used in reports that are // generated for this account. The value is a time-zone ID as specified // by the CLDR project, for example, "America/Los_Angeles". ReportingTimeZone string `json:"reportingTimeZone,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "CurrencyCode") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "CurrencyCode") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
PublisherAccount: A publisher account contains information relevant to the use of this API, such as the time zone used for the reports.
func (*PublisherAccount) MarshalJSON ¶
func (s *PublisherAccount) MarshalJSON() ([]byte, error)
type ReportFooter ¶
type ReportFooter struct { // Warning: This count does NOT always match the number of rows in the // response. Do not make that assumption when processing the response. MatchingRowCount int64 `json:"matchingRowCount,omitempty,string"` Warnings []*ReportWarning `json:"warnings,omitempty"` // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
ReportFooter: Groups data available after report generation, for example, warnings and row counts. Always sent as the last message in the stream response.
func (*ReportFooter) MarshalJSON ¶
func (s *ReportFooter) MarshalJSON() ([]byte, error)
type ReportHeader ¶
type ReportHeader struct { // DateRange: The date range for which the report is generated. This is // identical to the range specified in the report request. DateRange *DateRange `json:"dateRange,omitempty"` // LocalizationSettings: Localization settings of the report. This is // identical to the settings in the report request. LocalizationSettings *LocalizationSettings `json:"localizationSettings,omitempty"` // ReportingTimeZone: The report time zone. The value is a time-zone ID // as specified by the CLDR project, for example, "America/Los_Angeles". ReportingTimeZone string `json:"reportingTimeZone,omitempty"` // ForceSendFields is a list of field names (e.g. "DateRange") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DateRange") to include in // API requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ReportHeader: Groups data helps to treat the generated report. Always sent as a first message in the stream response.
func (*ReportHeader) MarshalJSON ¶
func (s *ReportHeader) MarshalJSON() ([]byte, error)
type ReportRow ¶
type ReportRow struct { // DimensionValues: Map of dimension values in a row, with keys as enum // name of the dimensions. DimensionValues map[string]ReportRowDimensionValue `json:"dimensionValues,omitempty"` // MetricValues: Map of metric values in a row, with keys as enum name // of the metrics. If a metric being requested has no value returned, // the map will not include it. MetricValues map[string]ReportRowMetricValue `json:"metricValues,omitempty"` // ForceSendFields is a list of field names (e.g. "DimensionValues") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DimensionValues") to // include in API requests with the JSON null value. By default, fields // with empty values are omitted from API requests. However, any field // with an empty value appearing in NullFields will be sent to the // server as null. It is an error if a field in this list has a // non-empty value. This may be used to include null fields in Patch // requests. NullFields []string `json:"-"` }
ReportRow: A row of the returning report.
func (*ReportRow) MarshalJSON ¶
type ReportRowDimensionValue ¶
type ReportRowDimensionValue struct { // DisplayLabel: The localized string representation of the value. If // unspecified, the display label should be derived from the value. DisplayLabel string `json:"displayLabel,omitempty"` // Value: Dimension value in the format specified in the report's spec // Dimension enum. Value string `json:"value,omitempty"` // ForceSendFields is a list of field names (e.g. "DisplayLabel") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DisplayLabel") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ReportRowDimensionValue: Representation of a dimension value.
func (*ReportRowDimensionValue) MarshalJSON ¶
func (s *ReportRowDimensionValue) MarshalJSON() ([]byte, error)
type ReportRowMetricValue ¶
type ReportRowMetricValue struct { // DoubleValue: Double precision (approximate) decimal values. Rates are // from 0 to 1. DoubleValue float64 `json:"doubleValue,omitempty"` // IntegerValue: Metric integer value. IntegerValue int64 `json:"integerValue,omitempty,string"` // MicrosValue: Amount in micros. One million is equivalent to one unit. // Currency value is in the unit (USD, EUR or other) specified by the // request. For example, $6.50 whould be represented as 6500000 micros. MicrosValue int64 `json:"microsValue,omitempty,string"` // ForceSendFields is a list of field names (e.g. "DoubleValue") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "DoubleValue") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ReportRowMetricValue: Representation of a metric value.
func (*ReportRowMetricValue) MarshalJSON ¶
func (s *ReportRowMetricValue) MarshalJSON() ([]byte, error)
func (*ReportRowMetricValue) UnmarshalJSON ¶
func (s *ReportRowMetricValue) UnmarshalJSON(data []byte) error
type ReportWarning ¶
type ReportWarning struct { // Description: Describes the details of the warning message, in // English. Description string `json:"description,omitempty"` // Type: Type of the warning. // // Possible values: // "TYPE_UNSPECIFIED" - Default value for an unset field. Do not use. // "DATA_BEFORE_ACCOUNT_TIMEZONE_CHANGE" - Some data in this report is // aggregated based on a time zone different from the requested time // zone. This could happen if a local time-zone report has the start // time before the last time this time zone changed. The description // field will contain the date of the last time zone change. // "DATA_DELAYED" - There is an unusual delay in processing the source // data for the requested date range. The report results might be less // up to date than usual. AdMob is aware of the issue and is actively // working to resolve it. // "OTHER" - Warnings that are exposed without a specific type. Useful // when new warning types are added but the API is not changed yet. // "REPORT_CURRENCY_NOT_ACCOUNT_CURRENCY" - The currency being // requested is not the account currency. The earning metrics will be // based on the requested currency, and thus not a good estimation of // the final payment anymore, due to the currency rate fluctuation. Type string `json:"type,omitempty"` // ForceSendFields is a list of field names (e.g. "Description") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Description") to include // in API requests with the JSON null value. By default, fields with // empty values are omitted from API requests. However, any field with // an empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
ReportWarning: Warnings associated with generation of the report.
func (*ReportWarning) MarshalJSON ¶
func (s *ReportWarning) MarshalJSON() ([]byte, error)
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Accounts *AccountsService // contains filtered or unexported fields }
func New
deprecated
New creates a new Service. It uses the provided http.Client for requests.
Deprecated: please use NewService instead. To provide a custom HTTP client, use option.WithHTTPClient. If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.
func NewService ¶
NewService creates a new Service.
type StringList ¶
type StringList struct { // Values: The string values. Values []string `json:"values,omitempty"` // ForceSendFields is a list of field names (e.g. "Values") to // unconditionally include in API requests. By default, fields with // empty or default values are omitted from API requests. However, any // non-pointer, non-interface field appearing in ForceSendFields will be // sent to the server regardless of whether the field is empty or not. // This may be used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` // NullFields is a list of field names (e.g. "Values") to include in API // requests with the JSON null value. By default, fields with empty // values are omitted from API requests. However, any field with an // empty value appearing in NullFields will be sent to the server as // null. It is an error if a field in this list has a non-empty value. // This may be used to include null fields in Patch requests. NullFields []string `json:"-"` }
StringList: List of string values.
func (*StringList) MarshalJSON ¶
func (s *StringList) MarshalJSON() ([]byte, error)