blob: 79fb445b65f64e04445d2897d87c3e3a0e349277 [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -07001<html><body>
2<style>
3
4body, 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
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, 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="admob_v1.html">AdMob API</a> . <a href="admob_v1.accounts.html">accounts</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="admob_v1.accounts.mediationReport.html">mediationReport()</a></code>
79</p>
80<p class="firstline">Returns the mediationReport Resource.</p>
81
82<p class="toc_element">
83 <code><a href="admob_v1.accounts.networkReport.html">networkReport()</a></code>
84</p>
85<p class="firstline">Returns the networkReport Resource.</p>
86
87<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070088 <code><a href="#close">close()</a></code></p>
89<p class="firstline">Close httplib2 connections.</p>
90<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070091 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
92<p class="firstline">Gets information about the specified AdMob publisher account.</p>
93<p class="toc_element">
Yoshi Automation Botc2228be2020-11-24 15:48:03 -080094 <code><a href="#list">list(pageToken=None, pageSize=None, x__xgafv=None)</a></code></p>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070095<p class="firstline">Lists the AdMob publisher account accessible with the client credential. Currently, all credentials have access to at most one AdMob account.</p>
Bu Sun Kim65020912020-05-20 12:08:20 -070096<p class="toc_element">
97 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
98<p class="firstline">Retrieves the next page of results.</p>
99<h3>Method Details</h3>
100<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700101 <code class="details" id="close">close()</code>
102 <pre>Close httplib2 connections.</pre>
103</div>
104
105<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700106 <code class="details" id="get">get(name, x__xgafv=None)</code>
107 <pre>Gets information about the specified AdMob publisher account.
108
109Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700110 name: string, Resource name of the publisher account to retrieve. Example: accounts/pub-9876543210987654 (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700111 x__xgafv: string, V1 error format.
112 Allowed values
113 1 - v1 error format
114 2 - v2 error format
115
116Returns:
117 An object of the form:
118
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700119 { # A publisher account contains information relevant to the use of this API, such as the time zone used for the reports.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800120 &quot;name&quot;: &quot;A String&quot;, # Resource name of this account. Format is accounts/{publisher_id}.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800121 &quot;reportingTimeZone&quot;: &quot;A String&quot;, # 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, &quot;America/Los_Angeles&quot;.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700122 &quot;currencyCode&quot;: &quot;A String&quot;, # 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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800123 &quot;publisherId&quot;: &quot;A String&quot;, # The unique ID by which this publisher account can be identified in the API requests (for example, pub-1234567890).
Bu Sun Kim65020912020-05-20 12:08:20 -0700124 }</pre>
125</div>
126
127<div class="method">
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800128 <code class="details" id="list">list(pageToken=None, pageSize=None, x__xgafv=None)</code>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700129 <pre>Lists the AdMob publisher account accessible with the client credential. Currently, all credentials have access to at most one AdMob account.
Bu Sun Kim65020912020-05-20 12:08:20 -0700130
131Args:
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700132 pageToken: string, 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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800133 pageSize: integer, Maximum number of accounts to return.
Bu Sun Kim65020912020-05-20 12:08:20 -0700134 x__xgafv: string, V1 error format.
135 Allowed values
136 1 - v1 error format
137 2 - v2 error format
138
139Returns:
140 An object of the form:
141
142 { # Response for the publisher account list request.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800143 &quot;nextPageToken&quot;: &quot;A String&quot;, # If not empty, indicates that there might be more accounts for the request; you must pass this value in a new `ListPublisherAccountsRequest`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700144 &quot;account&quot;: [ # Publisher that the client credentials can access.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700145 { # A publisher account contains information relevant to the use of this API, such as the time zone used for the reports.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800146 &quot;name&quot;: &quot;A String&quot;, # Resource name of this account. Format is accounts/{publisher_id}.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800147 &quot;reportingTimeZone&quot;: &quot;A String&quot;, # 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, &quot;America/Los_Angeles&quot;.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700148 &quot;currencyCode&quot;: &quot;A String&quot;, # 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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800149 &quot;publisherId&quot;: &quot;A String&quot;, # The unique ID by which this publisher account can be identified in the API requests (for example, pub-1234567890).
Bu Sun Kim65020912020-05-20 12:08:20 -0700150 },
151 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700152 }</pre>
153</div>
154
155<div class="method">
156 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
157 <pre>Retrieves the next page of results.
158
159Args:
160 previous_request: The request for the previous page. (required)
161 previous_response: The response from the request for the previous page. (required)
162
163Returns:
164 A request object that you can call &#x27;execute()&#x27; on to request the next
165 page. Returns None if there are no more items in the collection.
166 </pre>
167</div>
168
169</body></html>