Skip to content

Commit bde34a4

Browse files
1 parent e279910 commit bde34a4

14 files changed

+1067
-6
lines changed

clients/google-api-services-firebaseappdistribution/v1alpha/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-firebaseappdistribution</artifactId>
25-
<version>v1alpha-rev20240724-2.0.0</version>
25+
<version>v1alpha-rev20240726-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-firebaseappdistribution:v1alpha-rev20240724-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1alpha-rev20240726-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
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.firebaseappdistribution.v1alpha.model;
18+
19+
/**
20+
* Point for describing bounding boxes tap locations Top left is 0,0
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 Firebase App Distribution 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 AndroidxCrawlerOutputPoint extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Integer xCoordinate;
38+
39+
/**
40+
* The value may be {@code null}.
41+
*/
42+
@com.google.api.client.util.Key
43+
private java.lang.Integer yCoordinate;
44+
45+
/**
46+
* @return value or {@code null} for none
47+
*/
48+
public java.lang.Integer getXCoordinate() {
49+
return xCoordinate;
50+
}
51+
52+
/**
53+
* @param xCoordinate xCoordinate or {@code null} for none
54+
*/
55+
public AndroidxCrawlerOutputPoint setXCoordinate(java.lang.Integer xCoordinate) {
56+
this.xCoordinate = xCoordinate;
57+
return this;
58+
}
59+
60+
/**
61+
* @return value or {@code null} for none
62+
*/
63+
public java.lang.Integer getYCoordinate() {
64+
return yCoordinate;
65+
}
66+
67+
/**
68+
* @param yCoordinate yCoordinate or {@code null} for none
69+
*/
70+
public AndroidxCrawlerOutputPoint setYCoordinate(java.lang.Integer yCoordinate) {
71+
this.yCoordinate = yCoordinate;
72+
return this;
73+
}
74+
75+
@Override
76+
public AndroidxCrawlerOutputPoint set(String fieldName, Object value) {
77+
return (AndroidxCrawlerOutputPoint) super.set(fieldName, value);
78+
}
79+
80+
@Override
81+
public AndroidxCrawlerOutputPoint clone() {
82+
return (AndroidxCrawlerOutputPoint) super.clone();
83+
}
84+
85+
}

clients/google-api-services-firebaseappdistribution/v1alpha/2.0.0/com/google/api/services/firebaseappdistribution/v1alpha/model/GoogleFirebaseAppdistroV1alphaAiStepResult.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GoogleFirebaseAppdistroV1alphaAiStepResult extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. Details for an assertion step.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleFirebaseAppdistroV1alphaAssertionDetails assertionDetails;
39+
40+
/**
41+
* Output only. Details for a goal step.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private GoogleFirebaseAppdistroV1alphaGoalDetails goalDetails;
46+
3347
/**
3448
* Output only. The current state of the step
3549
* The value may be {@code null}.
@@ -44,6 +58,40 @@ public final class GoogleFirebaseAppdistroV1alphaAiStepResult extends com.google
4458
@com.google.api.client.util.Key
4559
private GoogleFirebaseAppdistroV1alphaAiStep step;
4660

61+
/**
62+
* Output only. Details for an assertion step.
63+
* @return value or {@code null} for none
64+
*/
65+
public GoogleFirebaseAppdistroV1alphaAssertionDetails getAssertionDetails() {
66+
return assertionDetails;
67+
}
68+
69+
/**
70+
* Output only. Details for an assertion step.
71+
* @param assertionDetails assertionDetails or {@code null} for none
72+
*/
73+
public GoogleFirebaseAppdistroV1alphaAiStepResult setAssertionDetails(GoogleFirebaseAppdistroV1alphaAssertionDetails assertionDetails) {
74+
this.assertionDetails = assertionDetails;
75+
return this;
76+
}
77+
78+
/**
79+
* Output only. Details for a goal step.
80+
* @return value or {@code null} for none
81+
*/
82+
public GoogleFirebaseAppdistroV1alphaGoalDetails getGoalDetails() {
83+
return goalDetails;
84+
}
85+
86+
/**
87+
* Output only. Details for a goal step.
88+
* @param goalDetails goalDetails or {@code null} for none
89+
*/
90+
public GoogleFirebaseAppdistroV1alphaAiStepResult setGoalDetails(GoogleFirebaseAppdistroV1alphaGoalDetails goalDetails) {
91+
this.goalDetails = goalDetails;
92+
return this;
93+
}
94+
4795
/**
4896
* Output only. The current state of the step
4997
* @return value or {@code null} for none
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
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.firebaseappdistribution.v1alpha.model;
18+
19+
/**
20+
* Details for an assertion step.
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 Firebase App Distribution 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 GoogleFirebaseAppdistroV1alphaAssertionDetails extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. An explanation justifying the assertion result.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String explanation;
39+
40+
/**
41+
* Output only. The result of the assertion.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Boolean result;
46+
47+
/**
48+
* Output only. The screenshot used in the context of this assertion.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private GoogleFirebaseAppdistroV1alphaScreenshot screenshot;
53+
54+
/**
55+
* Output only. An explanation justifying the assertion result.
56+
* @return value or {@code null} for none
57+
*/
58+
public java.lang.String getExplanation() {
59+
return explanation;
60+
}
61+
62+
/**
63+
* Output only. An explanation justifying the assertion result.
64+
* @param explanation explanation or {@code null} for none
65+
*/
66+
public GoogleFirebaseAppdistroV1alphaAssertionDetails setExplanation(java.lang.String explanation) {
67+
this.explanation = explanation;
68+
return this;
69+
}
70+
71+
/**
72+
* Output only. The result of the assertion.
73+
* @return value or {@code null} for none
74+
*/
75+
public java.lang.Boolean getResult() {
76+
return result;
77+
}
78+
79+
/**
80+
* Output only. The result of the assertion.
81+
* @param result result or {@code null} for none
82+
*/
83+
public GoogleFirebaseAppdistroV1alphaAssertionDetails setResult(java.lang.Boolean result) {
84+
this.result = result;
85+
return this;
86+
}
87+
88+
/**
89+
* Output only. The screenshot used in the context of this assertion.
90+
* @return value or {@code null} for none
91+
*/
92+
public GoogleFirebaseAppdistroV1alphaScreenshot getScreenshot() {
93+
return screenshot;
94+
}
95+
96+
/**
97+
* Output only. The screenshot used in the context of this assertion.
98+
* @param screenshot screenshot or {@code null} for none
99+
*/
100+
public GoogleFirebaseAppdistroV1alphaAssertionDetails setScreenshot(GoogleFirebaseAppdistroV1alphaScreenshot screenshot) {
101+
this.screenshot = screenshot;
102+
return this;
103+
}
104+
105+
@Override
106+
public GoogleFirebaseAppdistroV1alphaAssertionDetails set(String fieldName, Object value) {
107+
return (GoogleFirebaseAppdistroV1alphaAssertionDetails) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public GoogleFirebaseAppdistroV1alphaAssertionDetails clone() {
112+
return (GoogleFirebaseAppdistroV1alphaAssertionDetails) super.clone();
113+
}
114+
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
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.firebaseappdistribution.v1alpha.model;
18+
19+
/**
20+
* A high level action taken by the AI on the device, potentially involving multiple taps, text
21+
* entries, waits, etc.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Firebase App Distribution API. For a detailed
25+
* explanation see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class GoogleFirebaseAppdistroV1alphaDeviceAction extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Output only. A short description of the high level action taken by the AI agent.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String description;
40+
41+
/**
42+
* Output only. The interactions made with the device as part of this higher level action taken by
43+
* the agent, such as taps, text entries, waits, etc.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.util.List<GoogleFirebaseAppdistroV1alphaDeviceInteraction> deviceInteractions;
48+
49+
/**
50+
* Output only. A short description of the high level action taken by the AI agent.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.lang.String getDescription() {
54+
return description;
55+
}
56+
57+
/**
58+
* Output only. A short description of the high level action taken by the AI agent.
59+
* @param description description or {@code null} for none
60+
*/
61+
public GoogleFirebaseAppdistroV1alphaDeviceAction setDescription(java.lang.String description) {
62+
this.description = description;
63+
return this;
64+
}
65+
66+
/**
67+
* Output only. The interactions made with the device as part of this higher level action taken by
68+
* the agent, such as taps, text entries, waits, etc.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.util.List<GoogleFirebaseAppdistroV1alphaDeviceInteraction> getDeviceInteractions() {
72+
return deviceInteractions;
73+
}
74+
75+
/**
76+
* Output only. The interactions made with the device as part of this higher level action taken by
77+
* the agent, such as taps, text entries, waits, etc.
78+
* @param deviceInteractions deviceInteractions or {@code null} for none
79+
*/
80+
public GoogleFirebaseAppdistroV1alphaDeviceAction setDeviceInteractions(java.util.List<GoogleFirebaseAppdistroV1alphaDeviceInteraction> deviceInteractions) {
81+
this.deviceInteractions = deviceInteractions;
82+
return this;
83+
}
84+
85+
@Override
86+
public GoogleFirebaseAppdistroV1alphaDeviceAction set(String fieldName, Object value) {
87+
return (GoogleFirebaseAppdistroV1alphaDeviceAction) super.set(fieldName, value);
88+
}
89+
90+
@Override
91+
public GoogleFirebaseAppdistroV1alphaDeviceAction clone() {
92+
return (GoogleFirebaseAppdistroV1alphaDeviceAction) super.clone();
93+
}
94+
95+
}

0 commit comments

Comments
 (0)