Show / Hide Table of Contents

Class BarCode

A single bar code.

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

Properties

BoundingPolygon

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

Required

CodeType

Declaration
[JsonProperty(PropertyName = "codeType")]
public string CodeType { get; set; }
Property Value
Type Description
string

the encoding schema of bar code.

Confidence

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

the confidence score between 0 and 1.

Remarks

Required

Value

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

the bar code value.

Remarks

Required

In this article
Back to top