Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 00c4244

Browse files
committed
updated docs for real
1 parent 9109e7c commit 00c4244

File tree

483 files changed

+128592
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

483 files changed

+128592
-0
lines changed
Lines changed: 258 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,258 @@
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="adexchangebuyer_v1_3.html">Ad Exchange Buyer API</a> . <a href="adexchangebuyer_v1_3.accounts.html">accounts</a></h1>
76+
<h2>Instance Methods</h2>
77+
<p class="toc_element">
78+
<code><a href="#get">get(id)</a></code></p>
79+
<p class="firstline">Gets one account by ID.</p>
80+
<p class="toc_element">
81+
<code><a href="#list">list()</a></code></p>
82+
<p class="firstline">Retrieves the authenticated user's list of accounts.</p>
83+
<p class="toc_element">
84+
<code><a href="#patch">patch(id, body)</a></code></p>
85+
<p class="firstline">Updates an existing account. This method supports patch semantics.</p>
86+
<p class="toc_element">
87+
<code><a href="#update">update(id, body)</a></code></p>
88+
<p class="firstline">Updates an existing account.</p>
89+
<h3>Method Details</h3>
90+
<div class="method">
91+
<code class="details" id="get">get(id)</code>
92+
<pre>Gets one account by ID.
93+
94+
Args:
95+
id: integer, The account id (required)
96+
97+
Returns:
98+
An object of the form:
99+
100+
{ # Configuration data for an Ad Exchange buyer account.
101+
"kind": "adexchangebuyer#account", # Resource type.
102+
"maximumTotalQps": 42, # The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this.
103+
"bidderLocation": [ # Your bidder locations that have distinct URLs.
104+
{
105+
"url": "A String", # The URL to which the Ad Exchange will send bid requests.
106+
"region": "A String", # The geographical region the Ad Exchange should send requests from. Only used by some quota systems, but always setting the value is recommended. Allowed values:
107+
# - ASIA
108+
# - EUROPE
109+
# - US_EAST
110+
# - US_WEST
111+
"maximumQps": 42, # The maximum queries per second the Ad Exchange will send.
112+
},
113+
],
114+
"cookieMatchingNid": "A String", # The nid parameter value used in cookie match requests. Please contact your technical account manager if you need to change this.
115+
"id": 42, # Account id.
116+
"cookieMatchingUrl": "A String", # The base URL used in cookie match requests.
117+
}</pre>
118+
</div>
119+
120+
<div class="method">
121+
<code class="details" id="list">list()</code>
122+
<pre>Retrieves the authenticated user's list of accounts.
123+
124+
Args:
125+
126+
Returns:
127+
An object of the form:
128+
129+
{ # An account feed lists Ad Exchange buyer accounts that the user has access to. Each entry in the feed corresponds to a single buyer account.
130+
"items": [ # A list of accounts.
131+
{ # Configuration data for an Ad Exchange buyer account.
132+
"kind": "adexchangebuyer#account", # Resource type.
133+
"maximumTotalQps": 42, # The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this.
134+
"bidderLocation": [ # Your bidder locations that have distinct URLs.
135+
{
136+
"url": "A String", # The URL to which the Ad Exchange will send bid requests.
137+
"region": "A String", # The geographical region the Ad Exchange should send requests from. Only used by some quota systems, but always setting the value is recommended. Allowed values:
138+
# - ASIA
139+
# - EUROPE
140+
# - US_EAST
141+
# - US_WEST
142+
"maximumQps": 42, # The maximum queries per second the Ad Exchange will send.
143+
},
144+
],
145+
"cookieMatchingNid": "A String", # The nid parameter value used in cookie match requests. Please contact your technical account manager if you need to change this.
146+
"id": 42, # Account id.
147+
"cookieMatchingUrl": "A String", # The base URL used in cookie match requests.
148+
},
149+
],
150+
"kind": "adexchangebuyer#accountsList", # Resource type.
151+
}</pre>
152+
</div>
153+
154+
<div class="method">
155+
<code class="details" id="patch">patch(id, body)</code>
156+
<pre>Updates an existing account. This method supports patch semantics.
157+
158+
Args:
159+
id: integer, The account id (required)
160+
body: object, The request body. (required)
161+
The object takes the form of:
162+
163+
{ # Configuration data for an Ad Exchange buyer account.
164+
"kind": "adexchangebuyer#account", # Resource type.
165+
"maximumTotalQps": 42, # The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this.
166+
"bidderLocation": [ # Your bidder locations that have distinct URLs.
167+
{
168+
"url": "A String", # The URL to which the Ad Exchange will send bid requests.
169+
"region": "A String", # The geographical region the Ad Exchange should send requests from. Only used by some quota systems, but always setting the value is recommended. Allowed values:
170+
# - ASIA
171+
# - EUROPE
172+
# - US_EAST
173+
# - US_WEST
174+
"maximumQps": 42, # The maximum queries per second the Ad Exchange will send.
175+
},
176+
],
177+
"cookieMatchingNid": "A String", # The nid parameter value used in cookie match requests. Please contact your technical account manager if you need to change this.
178+
"id": 42, # Account id.
179+
"cookieMatchingUrl": "A String", # The base URL used in cookie match requests.
180+
}
181+
182+
183+
Returns:
184+
An object of the form:
185+
186+
{ # Configuration data for an Ad Exchange buyer account.
187+
"kind": "adexchangebuyer#account", # Resource type.
188+
"maximumTotalQps": 42, # The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this.
189+
"bidderLocation": [ # Your bidder locations that have distinct URLs.
190+
{
191+
"url": "A String", # The URL to which the Ad Exchange will send bid requests.
192+
"region": "A String", # The geographical region the Ad Exchange should send requests from. Only used by some quota systems, but always setting the value is recommended. Allowed values:
193+
# - ASIA
194+
# - EUROPE
195+
# - US_EAST
196+
# - US_WEST
197+
"maximumQps": 42, # The maximum queries per second the Ad Exchange will send.
198+
},
199+
],
200+
"cookieMatchingNid": "A String", # The nid parameter value used in cookie match requests. Please contact your technical account manager if you need to change this.
201+
"id": 42, # Account id.
202+
"cookieMatchingUrl": "A String", # The base URL used in cookie match requests.
203+
}</pre>
204+
</div>
205+
206+
<div class="method">
207+
<code class="details" id="update">update(id, body)</code>
208+
<pre>Updates an existing account.
209+
210+
Args:
211+
id: integer, The account id (required)
212+
body: object, The request body. (required)
213+
The object takes the form of:
214+
215+
{ # Configuration data for an Ad Exchange buyer account.
216+
"kind": "adexchangebuyer#account", # Resource type.
217+
"maximumTotalQps": 42, # The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this.
218+
"bidderLocation": [ # Your bidder locations that have distinct URLs.
219+
{
220+
"url": "A String", # The URL to which the Ad Exchange will send bid requests.
221+
"region": "A String", # The geographical region the Ad Exchange should send requests from. Only used by some quota systems, but always setting the value is recommended. Allowed values:
222+
# - ASIA
223+
# - EUROPE
224+
# - US_EAST
225+
# - US_WEST
226+
"maximumQps": 42, # The maximum queries per second the Ad Exchange will send.
227+
},
228+
],
229+
"cookieMatchingNid": "A String", # The nid parameter value used in cookie match requests. Please contact your technical account manager if you need to change this.
230+
"id": 42, # Account id.
231+
"cookieMatchingUrl": "A String", # The base URL used in cookie match requests.
232+
}
233+
234+
235+
Returns:
236+
An object of the form:
237+
238+
{ # Configuration data for an Ad Exchange buyer account.
239+
"kind": "adexchangebuyer#account", # Resource type.
240+
"maximumTotalQps": 42, # The sum of all bidderLocation.maximumQps values cannot exceed this. Please contact your technical account manager if you need to change this.
241+
"bidderLocation": [ # Your bidder locations that have distinct URLs.
242+
{
243+
"url": "A String", # The URL to which the Ad Exchange will send bid requests.
244+
"region": "A String", # The geographical region the Ad Exchange should send requests from. Only used by some quota systems, but always setting the value is recommended. Allowed values:
245+
# - ASIA
246+
# - EUROPE
247+
# - US_EAST
248+
# - US_WEST
249+
"maximumQps": 42, # The maximum queries per second the Ad Exchange will send.
250+
},
251+
],
252+
"cookieMatchingNid": "A String", # The nid parameter value used in cookie match requests. Please contact your technical account manager if you need to change this.
253+
"id": 42, # Account id.
254+
"cookieMatchingUrl": "A String", # The base URL used in cookie match requests.
255+
}</pre>
256+
</div>
257+
258+
</body></html>

0 commit comments

Comments
 (0)