Skip to content

Commit 01612fc

Browse files
1 parent 1d3da18 commit 01612fc

File tree

14 files changed

+1572
-6
lines changed

14 files changed

+1572
-6
lines changed

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

clients/google-api-services-marketingplatformadmin/v1alpha/2.0.0/com/google/api/services/marketingplatformadmin/v1alpha/GoogleMarketingPlatformAdminAPI.java

Lines changed: 442 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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.marketingplatformadmin.v1alpha.model;
18+
19+
/**
20+
* Contains the bill amount.
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 Google Marketing Platform Admin 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 BillInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The amount of the monthly base fee.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private Money baseFee;
39+
40+
/**
41+
* The amount of the event fee.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private Money eventFee;
46+
47+
/**
48+
* The amount of the price protection credit, this is only available for eligible customers.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private Money priceProtectionCredit;
53+
54+
/**
55+
* The total amount of the bill.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private Money total;
60+
61+
/**
62+
* The amount of the monthly base fee.
63+
* @return value or {@code null} for none
64+
*/
65+
public Money getBaseFee() {
66+
return baseFee;
67+
}
68+
69+
/**
70+
* The amount of the monthly base fee.
71+
* @param baseFee baseFee or {@code null} for none
72+
*/
73+
public BillInfo setBaseFee(Money baseFee) {
74+
this.baseFee = baseFee;
75+
return this;
76+
}
77+
78+
/**
79+
* The amount of the event fee.
80+
* @return value or {@code null} for none
81+
*/
82+
public Money getEventFee() {
83+
return eventFee;
84+
}
85+
86+
/**
87+
* The amount of the event fee.
88+
* @param eventFee eventFee or {@code null} for none
89+
*/
90+
public BillInfo setEventFee(Money eventFee) {
91+
this.eventFee = eventFee;
92+
return this;
93+
}
94+
95+
/**
96+
* The amount of the price protection credit, this is only available for eligible customers.
97+
* @return value or {@code null} for none
98+
*/
99+
public Money getPriceProtectionCredit() {
100+
return priceProtectionCredit;
101+
}
102+
103+
/**
104+
* The amount of the price protection credit, this is only available for eligible customers.
105+
* @param priceProtectionCredit priceProtectionCredit or {@code null} for none
106+
*/
107+
public BillInfo setPriceProtectionCredit(Money priceProtectionCredit) {
108+
this.priceProtectionCredit = priceProtectionCredit;
109+
return this;
110+
}
111+
112+
/**
113+
* The total amount of the bill.
114+
* @return value or {@code null} for none
115+
*/
116+
public Money getTotal() {
117+
return total;
118+
}
119+
120+
/**
121+
* The total amount of the bill.
122+
* @param total total or {@code null} for none
123+
*/
124+
public BillInfo setTotal(Money total) {
125+
this.total = total;
126+
return this;
127+
}
128+
129+
@Override
130+
public BillInfo set(String fieldName, Object value) {
131+
return (BillInfo) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public BillInfo clone() {
136+
return (BillInfo) super.clone();
137+
}
138+
139+
}
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.marketingplatformadmin.v1alpha.model;
18+
19+
/**
20+
* Contains the client data.
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 Google Marketing Platform Admin 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 ClientData extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The end date of the contract between the sales org and the end client.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private Date endDate;
39+
40+
/**
41+
* The end client that has/had contract with the requested sales org.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private Organization organization;
46+
47+
/**
48+
* The start date of the contract between the sales org and the end client.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private Date startDate;
53+
54+
/**
55+
* The end date of the contract between the sales org and the end client.
56+
* @return value or {@code null} for none
57+
*/
58+
public Date getEndDate() {
59+
return endDate;
60+
}
61+
62+
/**
63+
* The end date of the contract between the sales org and the end client.
64+
* @param endDate endDate or {@code null} for none
65+
*/
66+
public ClientData setEndDate(Date endDate) {
67+
this.endDate = endDate;
68+
return this;
69+
}
70+
71+
/**
72+
* The end client that has/had contract with the requested sales org.
73+
* @return value or {@code null} for none
74+
*/
75+
public Organization getOrganization() {
76+
return organization;
77+
}
78+
79+
/**
80+
* The end client that has/had contract with the requested sales org.
81+
* @param organization organization or {@code null} for none
82+
*/
83+
public ClientData setOrganization(Organization organization) {
84+
this.organization = organization;
85+
return this;
86+
}
87+
88+
/**
89+
* The start date of the contract between the sales org and the end client.
90+
* @return value or {@code null} for none
91+
*/
92+
public Date getStartDate() {
93+
return startDate;
94+
}
95+
96+
/**
97+
* The start date of the contract between the sales org and the end client.
98+
* @param startDate startDate or {@code null} for none
99+
*/
100+
public ClientData setStartDate(Date startDate) {
101+
this.startDate = startDate;
102+
return this;
103+
}
104+
105+
@Override
106+
public ClientData set(String fieldName, Object value) {
107+
return (ClientData) super.set(fieldName, value);
108+
}
109+
110+
@Override
111+
public ClientData clone() {
112+
return (ClientData) super.clone();
113+
}
114+
115+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
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.marketingplatformadmin.v1alpha.model;
18+
19+
/**
20+
* Represents a whole or partial calendar date, such as a birthday. The time of day and time zone
21+
* are either specified elsewhere or are insignificant. The date is relative to the Gregorian
22+
* Calendar. This can represent one of the following: * A full date, with non-zero year, month, and
23+
* day values. * A month and day, with a zero year (for example, an anniversary). * A year on its
24+
* own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit
25+
* card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime *
26+
* google.protobuf.Timestamp
27+
*
28+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
29+
* transmitted over HTTP when working with the Google Marketing Platform Admin API. For a detailed
30+
* explanation see:
31+
* <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>
32+
* </p>
33+
*
34+
* @author Google, Inc.
35+
*/
36+
@SuppressWarnings("javadoc")
37+
public final class Date extends com.google.api.client.json.GenericJson {
38+
39+
/**
40+
* Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year
41+
* by itself or a year and month where the day isn't significant.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.Integer day;
46+
47+
/**
48+
* Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.Integer month;
53+
54+
/**
55+
* Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.Integer year;
60+
61+
/**
62+
* Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year
63+
* by itself or a year and month where the day isn't significant.
64+
* @return value or {@code null} for none
65+
*/
66+
public java.lang.Integer getDay() {
67+
return day;
68+
}
69+
70+
/**
71+
* Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year
72+
* by itself or a year and month where the day isn't significant.
73+
* @param day day or {@code null} for none
74+
*/
75+
public Date setDay(java.lang.Integer day) {
76+
this.day = day;
77+
return this;
78+
}
79+
80+
/**
81+
* Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
82+
* @return value or {@code null} for none
83+
*/
84+
public java.lang.Integer getMonth() {
85+
return month;
86+
}
87+
88+
/**
89+
* Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day.
90+
* @param month month or {@code null} for none
91+
*/
92+
public Date setMonth(java.lang.Integer month) {
93+
this.month = month;
94+
return this;
95+
}
96+
97+
/**
98+
* Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
99+
* @return value or {@code null} for none
100+
*/
101+
public java.lang.Integer getYear() {
102+
return year;
103+
}
104+
105+
/**
106+
* Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year.
107+
* @param year year or {@code null} for none
108+
*/
109+
public Date setYear(java.lang.Integer year) {
110+
this.year = year;
111+
return this;
112+
}
113+
114+
@Override
115+
public Date set(String fieldName, Object value) {
116+
return (Date) super.set(fieldName, value);
117+
}
118+
119+
@Override
120+
public Date clone() {
121+
return (Date) super.clone();
122+
}
123+
124+
}

0 commit comments

Comments
 (0)