@@ -25,7 +25,7 @@ public class OpenAIClient {
2525 public virtual OpenAIResponseClient GetOpenAIResponseClient ( string model ) ;
2626 public virtual RealtimeClient GetRealtimeClient ( ) ;
2727 public virtual VectorStoreClient GetVectorStoreClient ( ) ;
28- public virtual Videos . VideoClient GetVideoClient ( ) ;
28+ public virtual VideoClient GetVideoClient ( ) ;
2929 }
3030 public class OpenAIClientOptions : ClientPipelineOptions {
3131 public Uri Endpoint { get ; set ; }
@@ -6026,11 +6026,11 @@ public class VideoClient {
60266026 public virtual Task < ClientResult > CreateVideoRemixAsync ( string videoId , BinaryContent content , string contentType , RequestOptions options = null ) ;
60276027 public virtual ClientResult DeleteVideo ( string videoId , RequestOptions options = null ) ;
60286028 public virtual Task < ClientResult > DeleteVideoAsync ( string videoId , RequestOptions options = null ) ;
6029+ public virtual ClientResult DownloadVideo ( string videoId , string variant = null , RequestOptions options = null ) ;
6030+ public virtual Task < ClientResult > DownloadVideoAsync ( string videoId , string variant = null , RequestOptions options = null ) ;
60296031 public virtual ClientResult GetVideo ( string videoId , RequestOptions options = null ) ;
60306032 public virtual Task < ClientResult > GetVideoAsync ( string videoId , RequestOptions options = null ) ;
60316033 public virtual ClientResult GetVideos ( long ? limit = null , string order = null , string after = null , RequestOptions options = null ) ;
60326034 public virtual Task < ClientResult > GetVideosAsync ( long ? limit = null , string order = null , string after = null , RequestOptions options = null ) ;
6033- public virtual ClientResult RetrieveVideoContent ( string videoId , string variant = null , RequestOptions options = null ) ;
6034- public virtual Task < ClientResult > RetrieveVideoContentAsync ( string videoId , string variant = null , RequestOptions options = null ) ;
60356035 }
60366036}
0 commit comments