Class Dimensions
The width and height of a page.
Inherited Members
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class Dimensions
Properties
Height
Declaration
[Required(ErrorMessage = "Height is required.")]
[JsonProperty(PropertyName = "height")]
public double Height { get; set; }
Property Value
Type | Description |
---|---|
double | The height of a page. |
Remarks
Required
Unit
Declaration
[Required(ErrorMessage = "Unit is required.")]
[JsonProperty(PropertyName = "unit")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Dimensions.UnitEnum? Unit { get; set; }
Property Value
Type | Description |
---|---|
Dimensions.UnitEnum? | The unit of length. |
Remarks
Required
Width
Declaration
[Required(ErrorMessage = "Width is required.")]
[JsonProperty(PropertyName = "width")]
public double Width { get; set; }
Property Value
Type | Description |
---|---|
double | the width of a page. |
Remarks
Required