Class SelectionMark
A single checkbox with selection mark.
Inherited Members
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