Skip to content

Commit 60423ae

Browse files
1 parent 1e12789 commit 60423ae

20 files changed

+867
-37
lines changed

clients/google-api-services-searchads360/v0/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-searchads360</artifactId>
25-
<version>v0-rev20250721-2.0.0</version>
25+
<version>v0-rev20251116-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-searchads360:v0-rev20250721-2.0.0'
38+
implementation 'com.google.apis:google-api-services-searchads360:v0-rev20251116-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.searchads360.v0.model;
18+
19+
/**
20+
* A URL for deep linking into an app for the given operating system.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Search Ads 360 Reporting API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleAdsSearchads360V0CommonFinalAppUrl extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The operating system targeted by this URL. Required.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String osType;
39+
40+
/**
41+
* The app deep link URL. Deep links specify a location in an app that corresponds to the content
42+
* you'd like to show, and should be of the form {scheme}://{host_path} The scheme identifies
43+
* which app to open. For your app, you can use a custom scheme that starts with the app's name.
44+
* The host and path specify the unique location in the app where your content exists. Example:
45+
* "exampleapp://productid_1234". Required.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String url;
50+
51+
/**
52+
* The operating system targeted by this URL. Required.
53+
* @return value or {@code null} for none
54+
*/
55+
public java.lang.String getOsType() {
56+
return osType;
57+
}
58+
59+
/**
60+
* The operating system targeted by this URL. Required.
61+
* @param osType osType or {@code null} for none
62+
*/
63+
public GoogleAdsSearchads360V0CommonFinalAppUrl setOsType(java.lang.String osType) {
64+
this.osType = osType;
65+
return this;
66+
}
67+
68+
/**
69+
* The app deep link URL. Deep links specify a location in an app that corresponds to the content
70+
* you'd like to show, and should be of the form {scheme}://{host_path} The scheme identifies
71+
* which app to open. For your app, you can use a custom scheme that starts with the app's name.
72+
* The host and path specify the unique location in the app where your content exists. Example:
73+
* "exampleapp://productid_1234". Required.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getUrl() {
77+
return url;
78+
}
79+
80+
/**
81+
* The app deep link URL. Deep links specify a location in an app that corresponds to the content
82+
* you'd like to show, and should be of the form {scheme}://{host_path} The scheme identifies
83+
* which app to open. For your app, you can use a custom scheme that starts with the app's name.
84+
* The host and path specify the unique location in the app where your content exists. Example:
85+
* "exampleapp://productid_1234". Required.
86+
* @param url url or {@code null} for none
87+
*/
88+
public GoogleAdsSearchads360V0CommonFinalAppUrl setUrl(java.lang.String url) {
89+
this.url = url;
90+
return this;
91+
}
92+
93+
@Override
94+
public GoogleAdsSearchads360V0CommonFinalAppUrl set(String fieldName, Object value) {
95+
return (GoogleAdsSearchads360V0CommonFinalAppUrl) super.set(fieldName, value);
96+
}
97+
98+
@Override
99+
public GoogleAdsSearchads360V0CommonFinalAppUrl clone() {
100+
return (GoogleAdsSearchads360V0CommonFinalAppUrl) super.clone();
101+
}
102+
103+
}

0 commit comments

Comments
 (0)