John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 1 | <html><body> |
| 2 | <style> |
| 3 | |
| 4 | body, h1, h2, h3, div, span, p, pre, a { |
| 5 | margin: 0; |
| 6 | padding: 0; |
| 7 | border: 0; |
| 8 | font-weight: inherit; |
| 9 | font-style: inherit; |
| 10 | font-size: 100%; |
| 11 | font-family: inherit; |
| 12 | vertical-align: baseline; |
| 13 | } |
| 14 | |
| 15 | body { |
| 16 | font-size: 13px; |
| 17 | padding: 1em; |
| 18 | } |
| 19 | |
| 20 | h1 { |
| 21 | font-size: 26px; |
| 22 | margin-bottom: 1em; |
| 23 | } |
| 24 | |
| 25 | h2 { |
| 26 | font-size: 24px; |
| 27 | margin-bottom: 1em; |
| 28 | } |
| 29 | |
| 30 | h3 { |
| 31 | font-size: 20px; |
| 32 | margin-bottom: 1em; |
| 33 | margin-top: 1em; |
| 34 | } |
| 35 | |
| 36 | pre, code { |
| 37 | line-height: 1.5; |
| 38 | font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; |
| 39 | } |
| 40 | |
| 41 | pre { |
| 42 | margin-top: 0.5em; |
| 43 | } |
| 44 | |
| 45 | h1, h2, h3, p { |
| 46 | font-family: Arial, sans serif; |
| 47 | } |
| 48 | |
| 49 | h1, h2, h3 { |
| 50 | border-bottom: solid #CCC 1px; |
| 51 | } |
| 52 | |
| 53 | .toc_element { |
| 54 | margin-top: 0.5em; |
| 55 | } |
| 56 | |
| 57 | .firstline { |
| 58 | margin-left: 2 em; |
| 59 | } |
| 60 | |
| 61 | .method { |
| 62 | margin-top: 1em; |
| 63 | border: solid 1px #CCC; |
| 64 | padding: 1em; |
| 65 | background: #EEE; |
| 66 | } |
| 67 | |
| 68 | .details { |
| 69 | font-weight: bold; |
| 70 | font-size: 14px; |
| 71 | } |
| 72 | |
| 73 | </style> |
| 74 | |
| 75 | <h1><a href="gamesManagement_v1management.html">Google Play Game Services Management API</a> . <a href="gamesManagement_v1management.applications.html">applications</a></h1> |
| 76 | <h2>Instance Methods</h2> |
| 77 | <p class="toc_element"> |
| 78 | <code><a href="#listHidden">listHidden(applicationId, pageToken=None, maxResults=None)</a></code></p> |
| 79 | <p class="firstline">Get the list of players hidden from the given application. This method is only available to user accounts for your developer console.</p> |
| 80 | <p class="toc_element"> |
| 81 | <code><a href="#listHidden_next">listHidden_next(previous_request, previous_response)</a></code></p> |
| 82 | <p class="firstline">Retrieves the next page of results.</p> |
| 83 | <h3>Method Details</h3> |
| 84 | <div class="method"> |
| 85 | <code class="details" id="listHidden">listHidden(applicationId, pageToken=None, maxResults=None)</code> |
| 86 | <pre>Get the list of players hidden from the given application. This method is only available to user accounts for your developer console. |
| 87 | |
| 88 | Args: |
Craig Citro | e633be1 | 2015-03-02 13:40:36 -0800 | [diff] [blame^] | 89 | applicationId: string, The application ID from the Google Play developer console. (required) |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 90 | pageToken: string, The token returned by the previous request. |
| 91 | maxResults: integer, The maximum number of player resources to return in the response, used for paging. For any response, the actual number of player resources returned may be less than the specified maxResults. |
| 92 | |
| 93 | Returns: |
| 94 | An object of the form: |
| 95 | |
| 96 | { # This is a JSON template for a list of hidden players. |
| 97 | "nextPageToken": "A String", # The pagination token for the next page of results. |
| 98 | "items": [ # The players. |
| 99 | { # This is a JSON template for the HiddenPlayer resource. |
| 100 | "player": { # This is a JSON template for a Player resource. # The player information. |
| 101 | "kind": "gamesManagement#player", # Uniquely identifies the type of this resource. Value is always the fixed string gamesManagement#player. |
| 102 | "displayName": "A String", # The name to display for the player. |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 103 | "name": { # An object representation of the individual components of the player's name. For some players, these fields may not be present. |
| 104 | "givenName": "A String", # The given name of this player. In some places, this is known as the first name. |
| 105 | "familyName": "A String", # The family name of this player. In some places, this is known as the last name. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 106 | }, |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 107 | "lastPlayedWith": { # This is a JSON template for metadata about a player playing a game with the currently authenticated user. # Details about the last time this player played a multiplayer game with the currently authenticated player. Populated for PLAYED_WITH player collection members. |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 108 | "autoMatched": True or False, # True if the player was auto-matched with the currently authenticated user. |
| 109 | "timeMillis": "A String", # The last time the player played the game in milliseconds since the epoch in UTC. |
| 110 | }, |
| 111 | "playerId": "A String", # The ID of the player. |
Craig Citro | 065b530 | 2014-08-14 00:47:23 -0700 | [diff] [blame] | 112 | "title": "A String", # The player's title rewarded for their game activities. |
| 113 | "experienceInfo": { # This is a JSON template for 1P/3P metadata about the player's experience. # An object to represent Play Game experience information for the player. |
| 114 | "lastLevelUpTimestampMillis": "A String", # The timestamp when the player was leveled up, in millis since Unix epoch UTC. |
| 115 | "currentExperiencePoints": "A String", # The current number of experience points for the player. |
| 116 | "nextLevel": { # This is a JSON template for 1P/3P metadata about a user's level. # The next level of the player. If the current level is the maximum level, this should be same as the current level. |
| 117 | "maxExperiencePoints": "A String", # The maximum experience points for this level. |
| 118 | "minExperiencePoints": "A String", # The minimum experience points for this level. |
| 119 | "level": 42, # The level for the user. |
| 120 | }, |
| 121 | "currentLevel": { # This is a JSON template for 1P/3P metadata about a user's level. # The current level of the player. |
| 122 | "maxExperiencePoints": "A String", # The maximum experience points for this level. |
| 123 | "minExperiencePoints": "A String", # The minimum experience points for this level. |
| 124 | "level": 42, # The level for the user. |
| 125 | }, |
| 126 | }, |
John Asmuth | 614db98 | 2014-04-24 15:46:26 -0400 | [diff] [blame] | 127 | "avatarImageUrl": "A String", # The base URL for the image that represents the player. |
| 128 | }, |
| 129 | "kind": "gamesManagement#hiddenPlayer", # Uniquely identifies the type of this resource. Value is always the fixed string gamesManagement#hiddenPlayer. |
| 130 | "hiddenTimeMillis": "A String", # The time this player was hidden. |
| 131 | }, |
| 132 | ], |
| 133 | "kind": "gamesManagement#hiddenPlayerList", # Uniquely identifies the type of this resource. Value is always the fixed string gamesManagement#hiddenPlayerList. |
| 134 | }</pre> |
| 135 | </div> |
| 136 | |
| 137 | <div class="method"> |
| 138 | <code class="details" id="listHidden_next">listHidden_next(previous_request, previous_response)</code> |
| 139 | <pre>Retrieves the next page of results. |
| 140 | |
| 141 | Args: |
| 142 | previous_request: The request for the previous page. (required) |
| 143 | previous_response: The response from the request for the previous page. (required) |
| 144 | |
| 145 | Returns: |
| 146 | A request object that you can call 'execute()' on to request the next |
| 147 | page. Returns None if there are no more items in the collection. |
| 148 | </pre> |
| 149 | </div> |
| 150 | |
| 151 | </body></html> |