Show / Hide Table of Contents

Class PredictionUri

Prediction URI per use-case.

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

Properties

Uri

Declaration
[Required(ErrorMessage = "Uri is required.")]
[JsonProperty(PropertyName = "uri")]
public string Uri { get; set; }
Property Value
Type Description
string

Prediction URI.

Remarks

Required

UseCase

Declaration
[Required(ErrorMessage = "UseCase is required.")]
[JsonProperty(PropertyName = "useCase")]
public string UseCase { get; set; }
Property Value
Type Description
string

Prediction use-case.

Remarks

Required

In this article
Back to top