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-youtubereporting</artifactId>
<version>v1-rev20260113-2.0.0</version>
<version>v1-rev20260408-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-youtubereporting:v1-rev20260113-2.0.0'
implementation 'com.google.apis:google-api-services-youtubereporting:v1-rev20260408-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ public final class GdataContentTypeInfo extends com.google.api.client.json.Gener
@com.google.api.client.util.Key
private java.lang.String fromFileName;

/**
* gdata
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String fromFusionId;

/**
* gdata
* The value may be {@code null}.
Expand All @@ -65,6 +72,13 @@ public final class GdataContentTypeInfo extends com.google.api.client.json.Gener
@com.google.api.client.util.Key
private java.lang.String fromUrlPath;

/**
* gdata
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String fusionIdDetectionMetadata;

/**
* gdata
* @return value or {@code null} for none
Expand Down Expand Up @@ -116,6 +130,23 @@ public GdataContentTypeInfo setFromFileName(java.lang.String fromFileName) {
return this;
}

/**
* gdata
* @return value or {@code null} for none
*/
public java.lang.String getFromFusionId() {
return fromFusionId;
}

/**
* gdata
* @param fromFusionId fromFusionId or {@code null} for none
*/
public GdataContentTypeInfo setFromFusionId(java.lang.String fromFusionId) {
this.fromFusionId = fromFusionId;
return this;
}

/**
* gdata
* @return value or {@code null} for none
Expand Down Expand Up @@ -150,6 +181,51 @@ public GdataContentTypeInfo setFromUrlPath(java.lang.String fromUrlPath) {
return this;
}

/**
* gdata
* @see #decodeFusionIdDetectionMetadata()
* @return value or {@code null} for none
*/
public java.lang.String getFusionIdDetectionMetadata() {
return fusionIdDetectionMetadata;
}

/**
* gdata
* @see #getFusionIdDetectionMetadata()
* @return Base64 decoded value or {@code null} for none
*
* @since 1.14
*/
public byte[] decodeFusionIdDetectionMetadata() {
return com.google.api.client.util.Base64.decodeBase64(fusionIdDetectionMetadata);
}

/**
* gdata
* @see #encodeFusionIdDetectionMetadata()
* @param fusionIdDetectionMetadata fusionIdDetectionMetadata or {@code null} for none
*/
public GdataContentTypeInfo setFusionIdDetectionMetadata(java.lang.String fusionIdDetectionMetadata) {
this.fusionIdDetectionMetadata = fusionIdDetectionMetadata;
return this;
}

/**
* gdata
* @see #setFusionIdDetectionMetadata()
*
* <p>
* The value is encoded Base64 or {@code null} for none.
* </p>
*
* @since 1.14
*/
public GdataContentTypeInfo encodeFusionIdDetectionMetadata(byte[] fusionIdDetectionMetadata) {
this.fusionIdDetectionMetadata = com.google.api.client.util.Base64.encodeBase64URLSafeString(fusionIdDetectionMetadata);
return this;
}

@Override
public GdataContentTypeInfo set(String fieldName, Object value) {
return (GdataContentTypeInfo) super.set(fieldName, value);
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-youtubereporting</artifactId>
<version>v1-rev20260113-2.0.0</version>
<name>YouTube Reporting API v1-rev20260113-2.0.0</name>
<version>v1-rev20260408-2.0.0</version>
<name>YouTube Reporting API v1-rev20260408-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-youtubereporting/v1/README.md
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-youtubereporting</artifactId>
<version>v1-rev20260113-2.0.0</version>
<version>v1-rev20260408-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-youtubereporting:v1-rev20260113-2.0.0'
implementation 'com.google.apis:google-api-services-youtubereporting:v1-rev20260408-2.0.0'
}
```

Expand Down