Show / Hide Table of Contents

Class SelectionMark

A single checkbox with selection mark.

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

Properties

BoundingPolygon

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

Required

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

The confidence score, a float value between 0 and 1.

Remarks

Required

State

Declaration
[Required(ErrorMessage = "State is required.")]
[JsonProperty(PropertyName = "state")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SelectionMark.StateEnum? State { get; set; }
Property Value
Type Description
SelectionMark.StateEnum?

String to display if checkbox is selected or not selected.

Remarks

Required

In this article
Back to top