Show / Hide Table of Contents

Class AudioUrl

Provide a base64 encoded audio or an audio uri if it's supported.

Inheritance
object
AudioUrl
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 AudioUrl

Properties

Detail

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

The default value is AUTO and only AUTO is supported. This option controls how to convert the base64 encoded audio 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