1<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="dfareporting_v3_3.html">Campaign Manager 360 API</a> . <a href="dfareporting_v3_3.advertiserLandingPages.html">advertiserLandingPages</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#get">get(profileId, id, x__xgafv=None)</a></code></p>
82<p class="firstline">Gets one landing page by ID.</p>
83<p class="toc_element">
84  <code><a href="#insert">insert(profileId, body=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Inserts a new landing page.</p>
86<p class="toc_element">
87  <code><a href="#list">list(profileId, advertiserIds=None, archived=None, campaignIds=None, ids=None, maxResults=None, pageToken=None, searchString=None, sortField=None, sortOrder=None, subaccountId=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Retrieves a list of landing pages.</p>
89<p class="toc_element">
90  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<p class="toc_element">
93  <code><a href="#patch">patch(profileId, id, body=None, x__xgafv=None)</a></code></p>
94<p class="firstline">Updates an existing advertiser landing page. This method supports patch semantics.</p>
95<p class="toc_element">
96  <code><a href="#update">update(profileId, body=None, x__xgafv=None)</a></code></p>
97<p class="firstline">Updates an existing landing page.</p>
98<h3>Method Details</h3>
99<div class="method">
100    <code class="details" id="close">close()</code>
101  <pre>Close httplib2 connections.</pre>
102</div>
103
104<div class="method">
105    <code class="details" id="get">get(profileId, id, x__xgafv=None)</code>
106  <pre>Gets one landing page by ID.
107
108Args:
109  profileId: string, User profile ID associated with this request. (required)
110  id: string, Landing page ID. (required)
111  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
119    { # Contains information about where a user&#x27;s browser is taken after the user clicks an ad.
120  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this landing page. This is a required field.
121  &quot;archived&quot;: True or False, # Whether this landing page has been archived.
122  &quot;deepLinks&quot;: [ # Links that will direct the user to a mobile app, if installed.
123    { # Contains information about a landing page deep link.
124      &quot;appUrl&quot;: &quot;A String&quot;, # The URL of the mobile app being linked to.
125      &quot;fallbackUrl&quot;: &quot;A String&quot;, # The fallback URL. This URL will be served to users who do not have the mobile app installed.
126      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#deepLink&quot;.
127      &quot;mobileApp&quot;: { # Contains information about a mobile app. Used as a landing page deep link. # The mobile app targeted by this deep link.
128        &quot;directory&quot;: &quot;A String&quot;, # Mobile app directory.
129        &quot;id&quot;: &quot;A String&quot;, # ID of this mobile app.
130        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#mobileApp&quot;.
131        &quot;publisherName&quot;: &quot;A String&quot;, # Publisher name.
132        &quot;title&quot;: &quot;A String&quot;, # Title of this mobile app.
133      },
134      &quot;remarketingListIds&quot;: [ # Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.
135        &quot;A String&quot;,
136      ],
137    },
138  ],
139  &quot;id&quot;: &quot;A String&quot;, # ID of this landing page. This is a read-only, auto-generated field.
140  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#landingPage&quot;.
141  &quot;name&quot;: &quot;A String&quot;, # Name of this landing page. This is a required field. It must be less than 256 characters long.
142  &quot;url&quot;: &quot;A String&quot;, # URL of this landing page. This is a required field.
143}</pre>
144</div>
145
146<div class="method">
147    <code class="details" id="insert">insert(profileId, body=None, x__xgafv=None)</code>
148  <pre>Inserts a new landing page.
149
150Args:
151  profileId: string, User profile ID associated with this request. (required)
152  body: object, The request body.
153    The object takes the form of:
154
155{ # Contains information about where a user&#x27;s browser is taken after the user clicks an ad.
156  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this landing page. This is a required field.
157  &quot;archived&quot;: True or False, # Whether this landing page has been archived.
158  &quot;deepLinks&quot;: [ # Links that will direct the user to a mobile app, if installed.
159    { # Contains information about a landing page deep link.
160      &quot;appUrl&quot;: &quot;A String&quot;, # The URL of the mobile app being linked to.
161      &quot;fallbackUrl&quot;: &quot;A String&quot;, # The fallback URL. This URL will be served to users who do not have the mobile app installed.
162      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#deepLink&quot;.
163      &quot;mobileApp&quot;: { # Contains information about a mobile app. Used as a landing page deep link. # The mobile app targeted by this deep link.
164        &quot;directory&quot;: &quot;A String&quot;, # Mobile app directory.
165        &quot;id&quot;: &quot;A String&quot;, # ID of this mobile app.
166        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#mobileApp&quot;.
167        &quot;publisherName&quot;: &quot;A String&quot;, # Publisher name.
168        &quot;title&quot;: &quot;A String&quot;, # Title of this mobile app.
169      },
170      &quot;remarketingListIds&quot;: [ # Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.
171        &quot;A String&quot;,
172      ],
173    },
174  ],
175  &quot;id&quot;: &quot;A String&quot;, # ID of this landing page. This is a read-only, auto-generated field.
176  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#landingPage&quot;.
177  &quot;name&quot;: &quot;A String&quot;, # Name of this landing page. This is a required field. It must be less than 256 characters long.
178  &quot;url&quot;: &quot;A String&quot;, # URL of this landing page. This is a required field.
179}
180
181  x__xgafv: string, V1 error format.
182    Allowed values
183      1 - v1 error format
184      2 - v2 error format
185
186Returns:
187  An object of the form:
188
189    { # Contains information about where a user&#x27;s browser is taken after the user clicks an ad.
190  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this landing page. This is a required field.
191  &quot;archived&quot;: True or False, # Whether this landing page has been archived.
192  &quot;deepLinks&quot;: [ # Links that will direct the user to a mobile app, if installed.
193    { # Contains information about a landing page deep link.
194      &quot;appUrl&quot;: &quot;A String&quot;, # The URL of the mobile app being linked to.
195      &quot;fallbackUrl&quot;: &quot;A String&quot;, # The fallback URL. This URL will be served to users who do not have the mobile app installed.
196      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#deepLink&quot;.
197      &quot;mobileApp&quot;: { # Contains information about a mobile app. Used as a landing page deep link. # The mobile app targeted by this deep link.
198        &quot;directory&quot;: &quot;A String&quot;, # Mobile app directory.
199        &quot;id&quot;: &quot;A String&quot;, # ID of this mobile app.
200        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#mobileApp&quot;.
201        &quot;publisherName&quot;: &quot;A String&quot;, # Publisher name.
202        &quot;title&quot;: &quot;A String&quot;, # Title of this mobile app.
203      },
204      &quot;remarketingListIds&quot;: [ # Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.
205        &quot;A String&quot;,
206      ],
207    },
208  ],
209  &quot;id&quot;: &quot;A String&quot;, # ID of this landing page. This is a read-only, auto-generated field.
210  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#landingPage&quot;.
211  &quot;name&quot;: &quot;A String&quot;, # Name of this landing page. This is a required field. It must be less than 256 characters long.
212  &quot;url&quot;: &quot;A String&quot;, # URL of this landing page. This is a required field.
213}</pre>
214</div>
215
216<div class="method">
217    <code class="details" id="list">list(profileId, advertiserIds=None, archived=None, campaignIds=None, ids=None, maxResults=None, pageToken=None, searchString=None, sortField=None, sortOrder=None, subaccountId=None, x__xgafv=None)</code>
218  <pre>Retrieves a list of landing pages.
219
220Args:
221  profileId: string, User profile ID associated with this request. (required)
222  advertiserIds: string, Select only landing pages that belong to these advertisers. (repeated)
223  archived: boolean, Select only archived landing pages. Don&#x27;t set this field to select both archived and non-archived landing pages.
224  campaignIds: string, Select only landing pages that are associated with these campaigns. (repeated)
225  ids: string, Select only landing pages with these IDs. (repeated)
226  maxResults: integer, Maximum number of results to return.
227  pageToken: string, Value of the nextPageToken from the previous result page.
228  searchString: string, Allows searching for landing pages by name or ID. Wildcards (*) are allowed. For example, &quot;landingpage*2017&quot; will return landing pages with names like &quot;landingpage July 2017&quot;, &quot;landingpage March 2017&quot;, or simply &quot;landingpage 2017&quot;. Most of the searches also add wildcards implicitly at the start and the end of the search string. For example, a search string of &quot;landingpage&quot; will match campaigns with name &quot;my landingpage&quot;, &quot;landingpage 2015&quot;, or simply &quot;landingpage&quot;.
229  sortField: string, Field by which to sort the list.
230    Allowed values
231      ID -
232      NAME -
233  sortOrder: string, Order of sorted results.
234    Allowed values
235      ASCENDING -
236      DESCENDING -
237  subaccountId: string, Select only landing pages that belong to this subaccount.
238  x__xgafv: string, V1 error format.
239    Allowed values
240      1 - v1 error format
241      2 - v2 error format
242
243Returns:
244  An object of the form:
245
246    { # Landing Page List Response
247  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#advertiserLandingPagesListResponse&quot;.
248  &quot;landingPages&quot;: [ # Landing page collection
249    { # Contains information about where a user&#x27;s browser is taken after the user clicks an ad.
250      &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this landing page. This is a required field.
251      &quot;archived&quot;: True or False, # Whether this landing page has been archived.
252      &quot;deepLinks&quot;: [ # Links that will direct the user to a mobile app, if installed.
253        { # Contains information about a landing page deep link.
254          &quot;appUrl&quot;: &quot;A String&quot;, # The URL of the mobile app being linked to.
255          &quot;fallbackUrl&quot;: &quot;A String&quot;, # The fallback URL. This URL will be served to users who do not have the mobile app installed.
256          &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#deepLink&quot;.
257          &quot;mobileApp&quot;: { # Contains information about a mobile app. Used as a landing page deep link. # The mobile app targeted by this deep link.
258            &quot;directory&quot;: &quot;A String&quot;, # Mobile app directory.
259            &quot;id&quot;: &quot;A String&quot;, # ID of this mobile app.
260            &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#mobileApp&quot;.
261            &quot;publisherName&quot;: &quot;A String&quot;, # Publisher name.
262            &quot;title&quot;: &quot;A String&quot;, # Title of this mobile app.
263          },
264          &quot;remarketingListIds&quot;: [ # Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.
265            &quot;A String&quot;,
266          ],
267        },
268      ],
269      &quot;id&quot;: &quot;A String&quot;, # ID of this landing page. This is a read-only, auto-generated field.
270      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#landingPage&quot;.
271      &quot;name&quot;: &quot;A String&quot;, # Name of this landing page. This is a required field. It must be less than 256 characters long.
272      &quot;url&quot;: &quot;A String&quot;, # URL of this landing page. This is a required field.
273    },
274  ],
275  &quot;nextPageToken&quot;: &quot;A String&quot;, # Pagination token to be used for the next list operation.
276}</pre>
277</div>
278
279<div class="method">
280    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
281  <pre>Retrieves the next page of results.
282
283Args:
284  previous_request: The request for the previous page. (required)
285  previous_response: The response from the request for the previous page. (required)
286
287Returns:
288  A request object that you can call &#x27;execute()&#x27; on to request the next
289  page. Returns None if there are no more items in the collection.
290    </pre>
291</div>
292
293<div class="method">
294    <code class="details" id="patch">patch(profileId, id, body=None, x__xgafv=None)</code>
295  <pre>Updates an existing advertiser landing page. This method supports patch semantics.
296
297Args:
298  profileId: string, User profile ID associated with this request. (required)
299  id: string, LandingPage ID. (required)
300  body: object, The request body.
301    The object takes the form of:
302
303{ # Contains information about where a user&#x27;s browser is taken after the user clicks an ad.
304  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this landing page. This is a required field.
305  &quot;archived&quot;: True or False, # Whether this landing page has been archived.
306  &quot;deepLinks&quot;: [ # Links that will direct the user to a mobile app, if installed.
307    { # Contains information about a landing page deep link.
308      &quot;appUrl&quot;: &quot;A String&quot;, # The URL of the mobile app being linked to.
309      &quot;fallbackUrl&quot;: &quot;A String&quot;, # The fallback URL. This URL will be served to users who do not have the mobile app installed.
310      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#deepLink&quot;.
311      &quot;mobileApp&quot;: { # Contains information about a mobile app. Used as a landing page deep link. # The mobile app targeted by this deep link.
312        &quot;directory&quot;: &quot;A String&quot;, # Mobile app directory.
313        &quot;id&quot;: &quot;A String&quot;, # ID of this mobile app.
314        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#mobileApp&quot;.
315        &quot;publisherName&quot;: &quot;A String&quot;, # Publisher name.
316        &quot;title&quot;: &quot;A String&quot;, # Title of this mobile app.
317      },
318      &quot;remarketingListIds&quot;: [ # Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.
319        &quot;A String&quot;,
320      ],
321    },
322  ],
323  &quot;id&quot;: &quot;A String&quot;, # ID of this landing page. This is a read-only, auto-generated field.
324  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#landingPage&quot;.
325  &quot;name&quot;: &quot;A String&quot;, # Name of this landing page. This is a required field. It must be less than 256 characters long.
326  &quot;url&quot;: &quot;A String&quot;, # URL of this landing page. This is a required field.
327}
328
329  x__xgafv: string, V1 error format.
330    Allowed values
331      1 - v1 error format
332      2 - v2 error format
333
334Returns:
335  An object of the form:
336
337    { # Contains information about where a user&#x27;s browser is taken after the user clicks an ad.
338  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this landing page. This is a required field.
339  &quot;archived&quot;: True or False, # Whether this landing page has been archived.
340  &quot;deepLinks&quot;: [ # Links that will direct the user to a mobile app, if installed.
341    { # Contains information about a landing page deep link.
342      &quot;appUrl&quot;: &quot;A String&quot;, # The URL of the mobile app being linked to.
343      &quot;fallbackUrl&quot;: &quot;A String&quot;, # The fallback URL. This URL will be served to users who do not have the mobile app installed.
344      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#deepLink&quot;.
345      &quot;mobileApp&quot;: { # Contains information about a mobile app. Used as a landing page deep link. # The mobile app targeted by this deep link.
346        &quot;directory&quot;: &quot;A String&quot;, # Mobile app directory.
347        &quot;id&quot;: &quot;A String&quot;, # ID of this mobile app.
348        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#mobileApp&quot;.
349        &quot;publisherName&quot;: &quot;A String&quot;, # Publisher name.
350        &quot;title&quot;: &quot;A String&quot;, # Title of this mobile app.
351      },
352      &quot;remarketingListIds&quot;: [ # Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.
353        &quot;A String&quot;,
354      ],
355    },
356  ],
357  &quot;id&quot;: &quot;A String&quot;, # ID of this landing page. This is a read-only, auto-generated field.
358  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#landingPage&quot;.
359  &quot;name&quot;: &quot;A String&quot;, # Name of this landing page. This is a required field. It must be less than 256 characters long.
360  &quot;url&quot;: &quot;A String&quot;, # URL of this landing page. This is a required field.
361}</pre>
362</div>
363
364<div class="method">
365    <code class="details" id="update">update(profileId, body=None, x__xgafv=None)</code>
366  <pre>Updates an existing landing page.
367
368Args:
369  profileId: string, User profile ID associated with this request. (required)
370  body: object, The request body.
371    The object takes the form of:
372
373{ # Contains information about where a user&#x27;s browser is taken after the user clicks an ad.
374  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this landing page. This is a required field.
375  &quot;archived&quot;: True or False, # Whether this landing page has been archived.
376  &quot;deepLinks&quot;: [ # Links that will direct the user to a mobile app, if installed.
377    { # Contains information about a landing page deep link.
378      &quot;appUrl&quot;: &quot;A String&quot;, # The URL of the mobile app being linked to.
379      &quot;fallbackUrl&quot;: &quot;A String&quot;, # The fallback URL. This URL will be served to users who do not have the mobile app installed.
380      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#deepLink&quot;.
381      &quot;mobileApp&quot;: { # Contains information about a mobile app. Used as a landing page deep link. # The mobile app targeted by this deep link.
382        &quot;directory&quot;: &quot;A String&quot;, # Mobile app directory.
383        &quot;id&quot;: &quot;A String&quot;, # ID of this mobile app.
384        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#mobileApp&quot;.
385        &quot;publisherName&quot;: &quot;A String&quot;, # Publisher name.
386        &quot;title&quot;: &quot;A String&quot;, # Title of this mobile app.
387      },
388      &quot;remarketingListIds&quot;: [ # Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.
389        &quot;A String&quot;,
390      ],
391    },
392  ],
393  &quot;id&quot;: &quot;A String&quot;, # ID of this landing page. This is a read-only, auto-generated field.
394  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#landingPage&quot;.
395  &quot;name&quot;: &quot;A String&quot;, # Name of this landing page. This is a required field. It must be less than 256 characters long.
396  &quot;url&quot;: &quot;A String&quot;, # URL of this landing page. This is a required field.
397}
398
399  x__xgafv: string, V1 error format.
400    Allowed values
401      1 - v1 error format
402      2 - v2 error format
403
404Returns:
405  An object of the form:
406
407    { # Contains information about where a user&#x27;s browser is taken after the user clicks an ad.
408  &quot;advertiserId&quot;: &quot;A String&quot;, # Advertiser ID of this landing page. This is a required field.
409  &quot;archived&quot;: True or False, # Whether this landing page has been archived.
410  &quot;deepLinks&quot;: [ # Links that will direct the user to a mobile app, if installed.
411    { # Contains information about a landing page deep link.
412      &quot;appUrl&quot;: &quot;A String&quot;, # The URL of the mobile app being linked to.
413      &quot;fallbackUrl&quot;: &quot;A String&quot;, # The fallback URL. This URL will be served to users who do not have the mobile app installed.
414      &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#deepLink&quot;.
415      &quot;mobileApp&quot;: { # Contains information about a mobile app. Used as a landing page deep link. # The mobile app targeted by this deep link.
416        &quot;directory&quot;: &quot;A String&quot;, # Mobile app directory.
417        &quot;id&quot;: &quot;A String&quot;, # ID of this mobile app.
418        &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#mobileApp&quot;.
419        &quot;publisherName&quot;: &quot;A String&quot;, # Publisher name.
420        &quot;title&quot;: &quot;A String&quot;, # Title of this mobile app.
421      },
422      &quot;remarketingListIds&quot;: [ # Ads served to users on these remarketing lists will use this deep link. Applicable when mobileApp.directory is APPLE_APP_STORE.
423        &quot;A String&quot;,
424      ],
425    },
426  ],
427  &quot;id&quot;: &quot;A String&quot;, # ID of this landing page. This is a read-only, auto-generated field.
428  &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dfareporting#landingPage&quot;.
429  &quot;name&quot;: &quot;A String&quot;, # Name of this landing page. This is a required field. It must be less than 256 characters long.
430  &quot;url&quot;: &quot;A String&quot;, # URL of this landing page. This is a required field.
431}</pre>
432</div>
433
434</body></html>