blob: db5521ad1ead2be46ff8648b5d74d8e100936082 [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">
88 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
89<p class="firstline">Gets information about the specified AdMob publisher account.</p>
90<p class="toc_element">
91 <code><a href="#list">list(pageToken=None, pageSize=None, x__xgafv=None)</a></code></p>
92<p class="firstline">Lists the AdMob publisher account accessible with the client credential.</p>
93<p class="toc_element">
94 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
95<p class="firstline">Retrieves the next page of results.</p>
96<h3>Method Details</h3>
97<div class="method">
98 <code class="details" id="get">get(name, x__xgafv=None)</code>
99 <pre>Gets information about the specified AdMob publisher account.
100
101Args:
102 name: string, Resource name of the publisher account to retrieve.
103Example: accounts/pub-9876543210987654 (required)
104 x__xgafv: string, V1 error format.
105 Allowed values
106 1 - v1 error format
107 2 - v2 error format
108
109Returns:
110 An object of the form:
111
112 { # A publisher account contains information relevant to the use of this API,
113 # such as the time zone used for the reports.
114 &quot;reportingTimeZone&quot;: &quot;A String&quot;, # The time zone that is used in reports that are generated for this account.
115 # The value is a time-zone ID as specified by the CLDR project,
116 # for example, &quot;America/Los_Angeles&quot;.
117 &quot;currencyCode&quot;: &quot;A String&quot;, # Currency code of the earning-related metrics, which is the 3-letter code
118 # defined in ISO 4217. The daily average rate is used for the currency
119 # conversion.
120 &quot;name&quot;: &quot;A String&quot;, # Resource name of this account.
121 # Format is accounts/{publisher_id}.
122 &quot;publisherId&quot;: &quot;A String&quot;, # The unique ID by which this publisher account can be identified
123 # in the API requests (for example, pub-1234567890).
124 }</pre>
125</div>
126
127<div class="method">
128 <code class="details" id="list">list(pageToken=None, pageSize=None, x__xgafv=None)</code>
129 <pre>Lists the AdMob publisher account accessible with the client credential.
130Currently, all credentials have access to at most one AdMob account.
131
132Args:
133 pageToken: string, The value returned by the last `ListPublisherAccountsResponse`; indicates
134that this is a continuation of a prior `ListPublisherAccounts` call, and
135that the system should return the next page of data.
136 pageSize: integer, Maximum number of accounts to return.
137 x__xgafv: string, V1 error format.
138 Allowed values
139 1 - v1 error format
140 2 - v2 error format
141
142Returns:
143 An object of the form:
144
145 { # Response for the publisher account list request.
146 &quot;account&quot;: [ # Publisher that the client credentials can access.
147 { # A publisher account contains information relevant to the use of this API,
148 # such as the time zone used for the reports.
149 &quot;reportingTimeZone&quot;: &quot;A String&quot;, # The time zone that is used in reports that are generated for this account.
150 # The value is a time-zone ID as specified by the CLDR project,
151 # for example, &quot;America/Los_Angeles&quot;.
152 &quot;currencyCode&quot;: &quot;A String&quot;, # Currency code of the earning-related metrics, which is the 3-letter code
153 # defined in ISO 4217. The daily average rate is used for the currency
154 # conversion.
155 &quot;name&quot;: &quot;A String&quot;, # Resource name of this account.
156 # Format is accounts/{publisher_id}.
157 &quot;publisherId&quot;: &quot;A String&quot;, # The unique ID by which this publisher account can be identified
158 # in the API requests (for example, pub-1234567890).
159 },
160 ],
161 &quot;nextPageToken&quot;: &quot;A String&quot;, # If not empty, indicates that there might be more accounts for the request;
162 # you must pass this value in a new `ListPublisherAccountsRequest`.
163 }</pre>
164</div>
165
166<div class="method">
167 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
168 <pre>Retrieves the next page of results.
169
170Args:
171 previous_request: The request for the previous page. (required)
172 previous_response: The response from the request for the previous page. (required)
173
174Returns:
175 A request object that you can call &#x27;execute()&#x27; on to request the next
176 page. Returns None if there are no more items in the collection.
177 </pre>
178</div>
179
180</body></html>