Movatterモバイル変換


[0]ホーム

URL:


gamesconfiguration

package
v0.257.0Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2025 License:BSD-3-ClauseImports:18Imported by:0

Details

Repository

github.com/googleapis/google-api-go-client

Links

Documentation

Overview

Package gamesconfiguration provides access to the Google Play Games Services Publishing API.

For product documentation, see:https://developers.google.com/games/

Library status

These client libraries are officially supported by Google. However, thislibrary is considered complete and is in maintenance mode. This meansthat we will address critical bugs and security issues but will not addany 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/gamesconfiguration/v1configuration"...ctx := context.Background()gamesconfigurationService, err := gamesconfiguration.NewService(ctx)

In this example, Google Application Default Credentials are used forauthentication. For information on how to create and obtain ApplicationDefault Credentials, seehttps://developers.google.com/identity/protocols/application-default-credentials.

Other authentication options

To use an API key for authentication (note: some APIs do not support APIkeys), usegoogle.golang.org/api/option.WithAPIKey:

gamesconfigurationService, err := gamesconfiguration.NewService(ctx, option.WithAPIKey("AIza..."))

To use an OAuth token (e.g., a user token obtained via a three-legged OAuthflow, usegoogle.golang.org/api/option.WithTokenSource:

config := &oauth2.Config{...}// ...token, err := config.Exchange(ctx, ...)gamesconfigurationService, err := gamesconfiguration.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

Seegoogle.golang.org/api/option.ClientOption for details on options.

Index

Constants

View Source
const (// View and manage your Google Play Developer accountAndroidpublisherScope = "https://www.googleapis.com/auth/androidpublisher")

OAuth2 scopes used by this API.

Variables

This section is empty.

Functions

This section is empty.

Types

typeAchievementConfiguration

type AchievementConfiguration struct {// AchievementType: The type of the achievement.//// Possible values://   "ACHIEVEMENT_TYPE_UNSPECIFIED" - Default value. This value is unused.//   "STANDARD" - Achievement is either locked or unlocked.//   "INCREMENTAL" - Achievement is incremental.AchievementTypestring `json:"achievementType,omitempty"`// Draft: The draft data of the achievement.Draft *AchievementConfigurationDetail `json:"draft,omitempty"`// Id: The ID of the achievement.Idstring `json:"id,omitempty"`// InitialState: The initial state of the achievement.//// Possible values://   "INITIAL_STATE_UNSPECIFIED" - Default value. This value is unused.//   "HIDDEN" - Achievement is hidden.//   "REVEALED" - Achievement is revealed.InitialStatestring `json:"initialState,omitempty"`// Kind: Uniquely identifies the type of this resource. Value is always the// fixed string `gamesConfiguration#achievementConfiguration`.Kindstring `json:"kind,omitempty"`// Published: The read-only published data of the achievement.Published *AchievementConfigurationDetail `json:"published,omitempty"`// StepsToUnlock: Steps to unlock. Only applicable to incremental achievements.StepsToUnlockint64 `json:"stepsToUnlock,omitempty"`// Token: The token for this resource.Tokenstring `json:"token,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "AchievementType") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "AchievementType") to include in// API requests with the JSON null value. By default, fields with empty values// are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

AchievementConfiguration: An achievement configuration resource.

func (AchievementConfiguration)MarshalJSON

func (sAchievementConfiguration) MarshalJSON() ([]byte,error)

typeAchievementConfigurationDetail

type AchievementConfigurationDetail struct {// Description: Localized strings for the achievement description.Description *LocalizedStringBundle `json:"description,omitempty"`// IconUrl: The icon url of this achievement. Writes to this field are ignored.IconUrlstring `json:"iconUrl,omitempty"`// Kind: Uniquely identifies the type of this resource. Value is always the// fixed string `gamesConfiguration#achievementConfigurationDetail`.Kindstring `json:"kind,omitempty"`// Name: Localized strings for the achievement name.Name *LocalizedStringBundle `json:"name,omitempty"`// PointValue: Point value for the achievement.PointValueint64 `json:"pointValue,omitempty"`// SortRank: The sort rank of this achievement. Writes to this field are// ignored.SortRankint64 `json:"sortRank,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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

AchievementConfigurationDetail: An achievement configuration detail.

func (AchievementConfigurationDetail)MarshalJSON

func (sAchievementConfigurationDetail) MarshalJSON() ([]byte,error)

typeAchievementConfigurationListResponse

type AchievementConfigurationListResponse struct {// Items: The achievement configurations.Items []*AchievementConfiguration `json:"items,omitempty"`// Kind: Uniquely identifies the type of this resource. Value is always the// fixed string `gamesConfiguration#achievementConfigurationListResponse`.Kindstring `json:"kind,omitempty"`// NextPageToken: The pagination token for the next page of results.NextPageTokenstring `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. "Items") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Items") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

AchievementConfigurationListResponse: A ListConfigurations response.

func (AchievementConfigurationListResponse)MarshalJSON

typeAchievementConfigurationsDeleteCall

type AchievementConfigurationsDeleteCall struct {// contains filtered or unexported fields}

func (*AchievementConfigurationsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*AchievementConfigurationsDeleteCall)Do

Do executes the "gamesConfiguration.achievementConfigurations.delete" call.

func (*AchievementConfigurationsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*AchievementConfigurationsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeAchievementConfigurationsGetCall

type AchievementConfigurationsGetCall struct {// contains filtered or unexported fields}

func (*AchievementConfigurationsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*AchievementConfigurationsGetCall)Do

Do executes the "gamesConfiguration.achievementConfigurations.get" call.Any non-2xx status code is an error. Response headers are in either*AchievementConfiguration.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*AchievementConfigurationsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*AchievementConfigurationsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*AchievementConfigurationsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeAchievementConfigurationsInsertCall

type AchievementConfigurationsInsertCall struct {// contains filtered or unexported fields}

func (*AchievementConfigurationsInsertCall)Context

Context sets the context to be used in this call's Do method.

func (*AchievementConfigurationsInsertCall)Do

Do executes the "gamesConfiguration.achievementConfigurations.insert" call.Any non-2xx status code is an error. Response headers are in either*AchievementConfiguration.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*AchievementConfigurationsInsertCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*AchievementConfigurationsInsertCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeAchievementConfigurationsListCall

type AchievementConfigurationsListCall struct {// contains filtered or unexported fields}

func (*AchievementConfigurationsListCall)Context

Context sets the context to be used in this call's Do method.

func (*AchievementConfigurationsListCall)Do

Do executes the "gamesConfiguration.achievementConfigurations.list" call.Any non-2xx status code is an error. Response headers are in either*AchievementConfigurationListResponse.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*AchievementConfigurationsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*AchievementConfigurationsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*AchievementConfigurationsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*AchievementConfigurationsListCall)MaxResults

MaxResults sets the optional parameter "maxResults": The maximum number ofresource configurations to return in the response, used for paging. For anyresponse, the actual number of resources returned may be less than thespecified `maxResults`.

func (*AchievementConfigurationsListCall)PageToken

PageToken sets the optional parameter "pageToken": The token returned by theprevious request.

func (*AchievementConfigurationsListCall)Pages

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.

typeAchievementConfigurationsService

type AchievementConfigurationsService struct {// contains filtered or unexported fields}

funcNewAchievementConfigurationsService

func NewAchievementConfigurationsService(s *Service) *AchievementConfigurationsService

func (*AchievementConfigurationsService)Delete

Delete: Delete the achievement configuration with the given ID.

- achievementId: The ID of the achievement used by this method.

func (*AchievementConfigurationsService)Get

Get: Retrieves the metadata of the achievement configuration with the givenID.

- achievementId: The ID of the achievement used by this method.

func (*AchievementConfigurationsService)Insert

Insert: Insert a new achievement configuration in this application.

- applicationId: The application ID from the Google Play developer console.

func (*AchievementConfigurationsService)List

List: Returns a list of the achievement configurations in this application.

- applicationId: The application ID from the Google Play developer console.

func (*AchievementConfigurationsService)Update

Update: Update the metadata of the achievement configuration with the givenID.

- achievementId: The ID of the achievement used by this method.

typeAchievementConfigurationsUpdateCall

type AchievementConfigurationsUpdateCall struct {// contains filtered or unexported fields}

func (*AchievementConfigurationsUpdateCall)Context

Context sets the context to be used in this call's Do method.

func (*AchievementConfigurationsUpdateCall)Do

Do executes the "gamesConfiguration.achievementConfigurations.update" call.Any non-2xx status code is an error. Response headers are in either*AchievementConfiguration.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*AchievementConfigurationsUpdateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*AchievementConfigurationsUpdateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeGamesNumberAffixConfiguration

type GamesNumberAffixConfiguration struct {// Few: When the language requires special treatment of "small" numbers (as// with 2, 3, and 4 in Czech; or numbers ending 2, 3, or 4 but not 12, 13, or// 14 in Polish).Few *LocalizedStringBundle `json:"few,omitempty"`// Many: When the language requires special treatment of "large" numbers (as// with numbers ending 11-99 in Maltese).Many *LocalizedStringBundle `json:"many,omitempty"`// One: When the language requires special treatment of numbers like one (as// with the number 1 in English and most other languages; in Russian, any// number ending in 1 but not ending in 11 is in this class).One *LocalizedStringBundle `json:"one,omitempty"`// Other: When the language does not require special treatment of the given// quantity (as with all numbers in Chinese, or 42 in English).Other *LocalizedStringBundle `json:"other,omitempty"`// Two: When the language requires special treatment of numbers like two (as// with 2 in Welsh, or 102 in Slovenian).Two *LocalizedStringBundle `json:"two,omitempty"`// Zero: When the language requires special treatment of the number 0 (as in// Arabic).Zero *LocalizedStringBundle `json:"zero,omitempty"`// ForceSendFields is a list of field names (e.g. "Few") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Few") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GamesNumberAffixConfiguration: A number affix resource.

func (GamesNumberAffixConfiguration)MarshalJSON

func (sGamesNumberAffixConfiguration) MarshalJSON() ([]byte,error)

typeGamesNumberFormatConfiguration

type GamesNumberFormatConfiguration struct {// CurrencyCode: The curreny code string. Only used for CURRENCY format type.CurrencyCodestring `json:"currencyCode,omitempty"`// NumDecimalPlaces: The number of decimal places for number. Only used for// NUMERIC format type.NumDecimalPlacesint64 `json:"numDecimalPlaces,omitempty"`// NumberFormatType: The formatting for the number.//// Possible values://   "NUMBER_FORMAT_TYPE_UNSPECIFIED" - Default value. This value is unused.//   "NUMERIC" - Numbers are formatted to have no digits or fixed number of// digits after the decimal point according to locale. An optional custom unit// can be added.//   "TIME_DURATION" - Numbers are formatted to hours, minutes and seconds.//   "CURRENCY" - Numbers are formatted to currency according to locale.NumberFormatTypestring `json:"numberFormatType,omitempty"`// Suffix: An optional suffix for the NUMERIC format type. These strings follow// the same plural rules as all Android string resources.Suffix *GamesNumberAffixConfiguration `json:"suffix,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. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.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. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GamesNumberFormatConfiguration: A number format resource.

func (GamesNumberFormatConfiguration)MarshalJSON

func (sGamesNumberFormatConfiguration) MarshalJSON() ([]byte,error)

typeLeaderboardConfiguration

type LeaderboardConfiguration struct {// Draft: The draft data of the leaderboard.Draft *LeaderboardConfigurationDetail `json:"draft,omitempty"`// Id: The ID of the leaderboard.Idstring `json:"id,omitempty"`// Kind: Uniquely identifies the type of this resource. Value is always the// fixed string `gamesConfiguration#leaderboardConfiguration`.Kindstring `json:"kind,omitempty"`// Published: The read-only published data of the leaderboard.Published *LeaderboardConfigurationDetail `json:"published,omitempty"`// ScoreMax: Maximum score that can be posted to this leaderboard.ScoreMaxint64 `json:"scoreMax,omitempty,string"`// ScoreMin: Minimum score that can be posted to this leaderboard.ScoreMinint64 `json:"scoreMin,omitempty,string"`// Possible values://   "SCORE_ORDER_UNSPECIFIED" - Default value. This value is unused.//   "LARGER_IS_BETTER" - Larger scores posted are ranked higher.//   "SMALLER_IS_BETTER" - Smaller scores posted are ranked higher.ScoreOrderstring `json:"scoreOrder,omitempty"`// Token: The token for this resource.Tokenstring `json:"token,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Draft") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Draft") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

LeaderboardConfiguration: An leaderboard configuration resource.

func (LeaderboardConfiguration)MarshalJSON

func (sLeaderboardConfiguration) MarshalJSON() ([]byte,error)

typeLeaderboardConfigurationDetail

type LeaderboardConfigurationDetail struct {// IconUrl: The icon url of this leaderboard. Writes to this field are ignored.IconUrlstring `json:"iconUrl,omitempty"`// Kind: Uniquely identifies the type of this resource. Value is always the// fixed string `gamesConfiguration#leaderboardConfigurationDetail`.Kindstring `json:"kind,omitempty"`// Name: Localized strings for the leaderboard name.Name *LocalizedStringBundle `json:"name,omitempty"`// ScoreFormat: The score formatting for the leaderboard.ScoreFormat *GamesNumberFormatConfiguration `json:"scoreFormat,omitempty"`// SortRank: The sort rank of this leaderboard. Writes to this field are// ignored.SortRankint64 `json:"sortRank,omitempty"`// ForceSendFields is a list of field names (e.g. "IconUrl") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "IconUrl") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

LeaderboardConfigurationDetail: A leaderboard configuration detail.

func (LeaderboardConfigurationDetail)MarshalJSON

func (sLeaderboardConfigurationDetail) MarshalJSON() ([]byte,error)

typeLeaderboardConfigurationListResponse

type LeaderboardConfigurationListResponse struct {// Items: The leaderboard configurations.Items []*LeaderboardConfiguration `json:"items,omitempty"`// Kind: Uniquely identifies the type of this resource. Value is always the// fixed string `gamesConfiguration#leaderboardConfigurationListResponse`.Kindstring `json:"kind,omitempty"`// NextPageToken: The pagination token for the next page of results.NextPageTokenstring `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. "Items") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Items") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

LeaderboardConfigurationListResponse: A ListConfigurations response.

func (LeaderboardConfigurationListResponse)MarshalJSON

typeLeaderboardConfigurationsDeleteCall

type LeaderboardConfigurationsDeleteCall struct {// contains filtered or unexported fields}

func (*LeaderboardConfigurationsDeleteCall)Context

Context sets the context to be used in this call's Do method.

func (*LeaderboardConfigurationsDeleteCall)Do

Do executes the "gamesConfiguration.leaderboardConfigurations.delete" call.

func (*LeaderboardConfigurationsDeleteCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*LeaderboardConfigurationsDeleteCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeLeaderboardConfigurationsGetCall

type LeaderboardConfigurationsGetCall struct {// contains filtered or unexported fields}

func (*LeaderboardConfigurationsGetCall)Context

Context sets the context to be used in this call's Do method.

func (*LeaderboardConfigurationsGetCall)Do

Do executes the "gamesConfiguration.leaderboardConfigurations.get" call.Any non-2xx status code is an error. Response headers are in either*LeaderboardConfiguration.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*LeaderboardConfigurationsGetCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*LeaderboardConfigurationsGetCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*LeaderboardConfigurationsGetCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeLeaderboardConfigurationsInsertCall

type LeaderboardConfigurationsInsertCall struct {// contains filtered or unexported fields}

func (*LeaderboardConfigurationsInsertCall)Context

Context sets the context to be used in this call's Do method.

func (*LeaderboardConfigurationsInsertCall)Do

Do executes the "gamesConfiguration.leaderboardConfigurations.insert" call.Any non-2xx status code is an error. Response headers are in either*LeaderboardConfiguration.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*LeaderboardConfigurationsInsertCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*LeaderboardConfigurationsInsertCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeLeaderboardConfigurationsListCall

type LeaderboardConfigurationsListCall struct {// contains filtered or unexported fields}

func (*LeaderboardConfigurationsListCall)Context

Context sets the context to be used in this call's Do method.

func (*LeaderboardConfigurationsListCall)Do

Do executes the "gamesConfiguration.leaderboardConfigurations.list" call.Any non-2xx status code is an error. Response headers are in either*LeaderboardConfigurationListResponse.ServerResponse.Header or (if aresponse was returned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*LeaderboardConfigurationsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*LeaderboardConfigurationsListCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*LeaderboardConfigurationsListCall)IfNoneMatch

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*LeaderboardConfigurationsListCall)MaxResults

MaxResults sets the optional parameter "maxResults": The maximum number ofresource configurations to return in the response, used for paging. For anyresponse, the actual number of resources returned may be less than thespecified `maxResults`.

func (*LeaderboardConfigurationsListCall)PageToken

PageToken sets the optional parameter "pageToken": The token returned by theprevious request.

func (*LeaderboardConfigurationsListCall)Pages

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.

typeLeaderboardConfigurationsService

type LeaderboardConfigurationsService struct {// contains filtered or unexported fields}

funcNewLeaderboardConfigurationsService

func NewLeaderboardConfigurationsService(s *Service) *LeaderboardConfigurationsService

func (*LeaderboardConfigurationsService)Delete

Delete: Delete the leaderboard configuration with the given ID.

- leaderboardId: The ID of the leaderboard.

func (*LeaderboardConfigurationsService)Get

Get: Retrieves the metadata of the leaderboard configuration with the givenID.

- leaderboardId: The ID of the leaderboard.

func (*LeaderboardConfigurationsService)Insert

Insert: Insert a new leaderboard configuration in this application.

- applicationId: The application ID from the Google Play developer console.

func (*LeaderboardConfigurationsService)List

List: Returns a list of the leaderboard configurations in this application.

- applicationId: The application ID from the Google Play developer console.

func (*LeaderboardConfigurationsService)Update

Update: Update the metadata of the leaderboard configuration with the givenID.

- leaderboardId: The ID of the leaderboard.

typeLeaderboardConfigurationsUpdateCall

type LeaderboardConfigurationsUpdateCall struct {// contains filtered or unexported fields}

func (*LeaderboardConfigurationsUpdateCall)Context

Context sets the context to be used in this call's Do method.

func (*LeaderboardConfigurationsUpdateCall)Do

Do executes the "gamesConfiguration.leaderboardConfigurations.update" call.Any non-2xx status code is an error. Response headers are in either*LeaderboardConfiguration.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*LeaderboardConfigurationsUpdateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*LeaderboardConfigurationsUpdateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeLocalizedString

type LocalizedString struct {// Kind: Uniquely identifies the type of this resource. Value is always the// fixed string `gamesConfiguration#localizedString`.Kindstring `json:"kind,omitempty"`// Locale: The locale string.Localestring `json:"locale,omitempty"`// Value: The string value.Valuestring `json:"value,omitempty"`// ForceSendFields is a list of field names (e.g. "Kind") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Kind") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

LocalizedString: A localized string resource.

func (LocalizedString)MarshalJSON

func (sLocalizedString) MarshalJSON() ([]byte,error)

typeLocalizedStringBundle

type LocalizedStringBundle struct {// Kind: Uniquely identifies the type of this resource. Value is always the// fixed string `gamesConfiguration#localizedStringBundle`.Kindstring `json:"kind,omitempty"`// Translations: The locale strings.Translations []*LocalizedString `json:"translations,omitempty"`// ForceSendFields is a list of field names (e.g. "Kind") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Kind") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

LocalizedStringBundle: A localized string bundle resource.

func (LocalizedStringBundle)MarshalJSON

func (sLocalizedStringBundle) MarshalJSON() ([]byte,error)

typeService

type Service struct {BasePathstring// API endpoint base URLUserAgentstring// optional additional User-Agent fragmentAchievementConfigurations *AchievementConfigurationsServiceLeaderboardConfigurations *LeaderboardConfigurationsService// contains filtered or unexported fields}

funcNewdeprecated

func New(client *http.Client) (*Service,error)

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.

funcNewServiceadded inv0.3.0

func NewService(ctxcontext.Context, opts ...option.ClientOption) (*Service,error)

NewService creates a new Service.

Source Files

View all Source files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f orF : Jump to
y orY : Canonical URL
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic.Learn more.

[8]ページ先頭

©2009-2025 Movatter.jp