Skip to content
Closed
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
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v2/2.0.0/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-displayvideo</artifactId>
<version>v2-rev20260107-2.0.0</version>
<version>v2-rev20260210-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20260107-2.0.0'
implementation 'com.google.apis:google-api-services-displayvideo:v2-rev20260210-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class DisplayVideo extends com.google.api.client.googleapis.services.json
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -28847,8 +28847,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,36 +31,36 @@
public final class ImageAsset extends com.google.api.client.json.GenericJson {

/**
* File size of the image asset in bytes.
* Output only. File size of the image asset in bytes.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long fileSize;

/**
* Metadata for this image at its original size.
* Output only. Metadata for this image at its original size.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private Dimensions fullSize;

/**
* MIME type of the image asset.
* Output only. MIME type of the image asset.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String mimeType;

/**
* File size of the image asset in bytes.
* Output only. File size of the image asset in bytes.
* @return value or {@code null} for none
*/
public java.lang.Long getFileSize() {
return fileSize;
}

/**
* File size of the image asset in bytes.
* Output only. File size of the image asset in bytes.
* @param fileSize fileSize or {@code null} for none
*/
public ImageAsset setFileSize(java.lang.Long fileSize) {
Expand All @@ -69,15 +69,15 @@ public ImageAsset setFileSize(java.lang.Long fileSize) {
}

/**
* Metadata for this image at its original size.
* Output only. Metadata for this image at its original size.
* @return value or {@code null} for none
*/
public Dimensions getFullSize() {
return fullSize;
}

/**
* Metadata for this image at its original size.
* Output only. Metadata for this image at its original size.
* @param fullSize fullSize or {@code null} for none
*/
public ImageAsset setFullSize(Dimensions fullSize) {
Expand All @@ -86,15 +86,15 @@ public ImageAsset setFullSize(Dimensions fullSize) {
}

/**
* MIME type of the image asset.
* Output only. MIME type of the image asset.
* @return value or {@code null} for none
*/
public java.lang.String getMimeType() {
return mimeType;
}

/**
* MIME type of the image asset.
* Output only. MIME type of the image asset.
* @param mimeType mimeType or {@code null} for none
*/
public ImageAsset setMimeType(java.lang.String mimeType) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public final class YoutubeVideoDetails extends com.google.api.client.json.GenericJson {

/**
* The YouTube video ID which can be searched on YouTube webpage.
* Output only. The YouTube video ID which can be searched on YouTube webpage.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -45,15 +45,22 @@ public final class YoutubeVideoDetails extends com.google.api.client.json.Generi
private java.lang.String unavailableReason;

/**
* The YouTube video ID which can be searched on YouTube webpage.
* Required. The YouTube video asset id. This is ad_asset.ad_asset_id.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long videoAssetId;

/**
* Output only. The YouTube video ID which can be searched on YouTube webpage.
* @return value or {@code null} for none
*/
public java.lang.String getId() {
return id;
}

/**
* The YouTube video ID which can be searched on YouTube webpage.
* Output only. The YouTube video ID which can be searched on YouTube webpage.
* @param id id or {@code null} for none
*/
public YoutubeVideoDetails setId(java.lang.String id) {
Expand All @@ -78,6 +85,23 @@ public YoutubeVideoDetails setUnavailableReason(java.lang.String unavailableReas
return this;
}

/**
* Required. The YouTube video asset id. This is ad_asset.ad_asset_id.
* @return value or {@code null} for none
*/
public java.lang.Long getVideoAssetId() {
return videoAssetId;
}

/**
* Required. The YouTube video asset id. This is ad_asset.ad_asset_id.
* @param videoAssetId videoAssetId or {@code null} for none
*/
public YoutubeVideoDetails setVideoAssetId(java.lang.Long videoAssetId) {
this.videoAssetId = videoAssetId;
return this;
}

@Override
public YoutubeVideoDetails set(String fieldName, Object value) {
return (YoutubeVideoDetails) super.set(fieldName, value);
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v2/2.0.0/pom.xml
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-displayvideo</artifactId>
<version>v2-rev20260107-2.0.0</version>
<name>Display &amp; Video 360 API v2-rev20260107-2.0.0</name>
<version>v2-rev20260210-2.0.0</version>
<name>Display &amp; Video 360 API v2-rev20260210-2.0.0</name>
<packaging>jar</packaging>

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

Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-displayvideo/v3/2.0.0/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-displayvideo</artifactId>
<version>v3-rev20260127-2.0.0</version>
<version>v3-rev20260212-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-displayvideo:v3-rev20260127-2.0.0'
implementation 'com.google.apis:google-api-services-displayvideo:v3-rev20260212-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public class DisplayVideo extends com.google.api.client.googleapis.services.json
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </li>
* </ul>
* @param jsonFactory JSON factory, which may be:
Expand Down Expand Up @@ -29494,8 +29494,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
* <li>Android: {@code newCompatibleTransport} from
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
* </li>
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
* </ul>
* @param jsonFactory JSON factory, which may be:
* <ul>
Expand Down
Loading
Loading