Skip to content

Commit 2e0ec18

Browse files
chore: regenerate readerrevenuesubscriptionlinking client (#27648)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
1 parent 971f79c commit 2e0ec18

File tree

4 files changed

+81
-6
lines changed

4 files changed

+81
-6
lines changed

clients/google-api-services-readerrevenuesubscriptionlinking/v1/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-readerrevenuesubscriptionlinking</artifactId>
25-
<version>v1-rev20241015-2.0.0</version>
25+
<version>v1-rev20250611-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-readerrevenuesubscriptionlinking:v1-rev20241015-2.0.0'
38+
implementation 'com.google.apis:google-api-services-readerrevenuesubscriptionlinking:v1-rev20250611-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-readerrevenuesubscriptionlinking/v1/2.0.0/com/google/api/services/readerrevenuesubscriptionlinking/v1/model/Reader.java

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,28 @@ public final class Reader extends com.google.api.client.json.GenericJson {
4545
@com.google.api.client.util.Key
4646
private java.lang.String name;
4747

48+
/**
49+
* Output only. The SwG publication id that the reader's subscription linking was originating
50+
* from.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String originatingPublicationId;
55+
56+
/**
57+
* Output only. The publisher provided id of the reader.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private java.lang.String ppid;
62+
63+
/**
64+
* Output only. The SwG publication id that the reader has linked their subscription to.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private java.lang.String publicationId;
69+
4870
/**
4971
* Output only. Time the publication reader was created and associated with a Google user.
5072
* @return value or {@code null} for none
@@ -81,6 +103,59 @@ public Reader setName(java.lang.String name) {
81103
return this;
82104
}
83105

106+
/**
107+
* Output only. The SwG publication id that the reader's subscription linking was originating
108+
* from.
109+
* @return value or {@code null} for none
110+
*/
111+
public java.lang.String getOriginatingPublicationId() {
112+
return originatingPublicationId;
113+
}
114+
115+
/**
116+
* Output only. The SwG publication id that the reader's subscription linking was originating
117+
* from.
118+
* @param originatingPublicationId originatingPublicationId or {@code null} for none
119+
*/
120+
public Reader setOriginatingPublicationId(java.lang.String originatingPublicationId) {
121+
this.originatingPublicationId = originatingPublicationId;
122+
return this;
123+
}
124+
125+
/**
126+
* Output only. The publisher provided id of the reader.
127+
* @return value or {@code null} for none
128+
*/
129+
public java.lang.String getPpid() {
130+
return ppid;
131+
}
132+
133+
/**
134+
* Output only. The publisher provided id of the reader.
135+
* @param ppid ppid or {@code null} for none
136+
*/
137+
public Reader setPpid(java.lang.String ppid) {
138+
this.ppid = ppid;
139+
return this;
140+
}
141+
142+
/**
143+
* Output only. The SwG publication id that the reader has linked their subscription to.
144+
* @return value or {@code null} for none
145+
*/
146+
public java.lang.String getPublicationId() {
147+
return publicationId;
148+
}
149+
150+
/**
151+
* Output only. The SwG publication id that the reader has linked their subscription to.
152+
* @param publicationId publicationId or {@code null} for none
153+
*/
154+
public Reader setPublicationId(java.lang.String publicationId) {
155+
this.publicationId = publicationId;
156+
return this;
157+
}
158+
84159
@Override
85160
public Reader set(String fieldName, Object value) {
86161
return (Reader) super.set(fieldName, value);

clients/google-api-services-readerrevenuesubscriptionlinking/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-readerrevenuesubscriptionlinking</artifactId>
11-
<version>v1-rev20241015-2.0.0</version>
12-
<name>Reader Revenue Subscription Linking API v1-rev20241015-2.0.0</name>
11+
<version>v1-rev20250611-2.0.0</version>
12+
<name>Reader Revenue Subscription Linking API v1-rev20250611-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-readerrevenuesubscriptionlinking/v1/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-readerrevenuesubscriptionlinking</artifactId>
25-
<version>v1-rev20241015-2.0.0</version>
25+
<version>v1-rev20250611-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-readerrevenuesubscriptionlinking:v1-rev20241015-2.0.0'
38+
implementation 'com.google.apis:google-api-services-readerrevenuesubscriptionlinking:v1-rev20250611-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)