Show / Hide Table of Contents

Class ImageUrl

Provide a base64 encoded image.

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

Properties

Detail

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

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