Show / Hide Table of Contents

Class VideoUrl

The base64 encoded video data or a video uri if it's supported.

Inheritance
object
VideoUrl
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class VideoUrl

Properties

Detail

Declaration
[JsonProperty(PropertyName = "detail")]
[JsonConverter(typeof(ResponseEnumConverter))]
public VideoUrl.DetailEnum? Detail { get; set; }
Property Value
Type Description
VideoUrl.DetailEnum?

The default value is AUTO and only AUTO is supported. This option controls how to convert the base64 encoded video to tokens.

Url

Declaration
[Required(ErrorMessage = "Url is required.")]
[JsonProperty(PropertyName = "url")]
public string Url { get; set; }
Property Value
Type Description
string
In this article
Back to top