Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-webcontentpublisher</artifactId>
<version>v1-rev20260629-2.0.0</version>
<version>v1-rev20260724-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-webcontentpublisher:v1-rev20260629-2.0.0'
implementation 'com.google.apis:google-api-services-webcontentpublisher:v1-rev20260724-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,14 @@ public final class Publication extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String publicationTosUrl;

/**
* Optional. The publication entity type (for-profit vs non-profit). Defaults to FOR_PROFIT if
* omitted.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String publicationType;

/**
* Required. The ISO 3166-1 alpha-2 region code where the publication is registered (e.g., "US").
* The value may be {@code null}.
Expand Down Expand Up @@ -372,6 +380,25 @@ public Publication setPublicationTosUrl(java.lang.String publicationTosUrl) {
return this;
}

/**
* Optional. The publication entity type (for-profit vs non-profit). Defaults to FOR_PROFIT if
* omitted.
* @return value or {@code null} for none
*/
public java.lang.String getPublicationType() {
return publicationType;
}

/**
* Optional. The publication entity type (for-profit vs non-profit). Defaults to FOR_PROFIT if
* omitted.
* @param publicationType publicationType or {@code null} for none
*/
public Publication setPublicationType(java.lang.String publicationType) {
this.publicationType = publicationType;
return this;
}

/**
* Required. The ISO 3166-1 alpha-2 region code where the publication is registered (e.g., "US").
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@
@SuppressWarnings("javadoc")
public final class TosAcceptance extends com.google.api.client.json.GenericJson {

/**
* Optional. Whether the user opted in to receive product updates and email communications.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean emailOptIn;

/**
* Optional. The name of the person who accepted the TOS.
* The value may be {@code null}.
Expand All @@ -51,6 +58,23 @@ public final class TosAcceptance extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private java.lang.Boolean userAccepted;

/**
* Optional. Whether the user opted in to receive product updates and email communications.
* @return value or {@code null} for none
*/
public java.lang.Boolean getEmailOptIn() {
return emailOptIn;
}

/**
* Optional. Whether the user opted in to receive product updates and email communications.
* @param emailOptIn emailOptIn or {@code null} for none
*/
public TosAcceptance setEmailOptIn(java.lang.Boolean emailOptIn) {
this.emailOptIn = emailOptIn;
return this;
}

/**
* Optional. The name of the person who accepted the TOS.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-webcontentpublisher</artifactId>
<version>v1-rev20260629-2.0.0</version>
<name>Web Content Publisher API v1-rev20260629-2.0.0</name>
<version>v1-rev20260724-2.0.0</version>
<name>Web Content Publisher API v1-rev20260724-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-webcontentpublisher</artifactId>
<version>v1-rev20260629-2.0.0</version>
<version>v1-rev20260724-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-webcontentpublisher:v1-rev20260629-2.0.0'
implementation 'com.google.apis:google-api-services-webcontentpublisher:v1-rev20260724-2.0.0'
}
```

Expand Down
Loading