Show / Hide Table of Contents

Class PredictRequest

Inheritance
object
PredictRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ModeldeploymentService.Requests
Assembly: OCI.DotNetSDK.Modeldeployment.dll
Syntax
public class PredictRequest : IOciRequest
Examples

Click here to see an example of how to use Predict request.

Properties

ModelDeploymentId

Declaration
[Required(ErrorMessage = "ModelDeploymentId is required.")]
[HttpConverter(TargetEnum.Path, "modelDeploymentId")]
public string ModelDeploymentId { get; set; }
Property Value
Type Description
string

The OCID of the model deployment.

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique Oracle identifier for request

RequestBody

Declaration
[Required(ErrorMessage = "RequestBody is required.")]
[HttpConverter(TargetEnum.Body)]
public string RequestBody { get; set; }
Property Value
Type Description
string

Input data details for making a prediction call

Remarks

Required

Implements

IOciRequest
In this article
Back to top