< Summary

Class:Microsoft.Azure.CognitiveServices.FormRecognizer.Models.ExtractedPage
Assembly:Microsoft.Azure.CognitiveServices.Vision.FormRecognizer
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\FormRecognizer\src\Generated\Models\ExtractedPage.cs
Covered lines:0
Uncovered lines:16
Coverable lines:16
Total lines:97
Line coverage:0% (0 of 16)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Number()-0%100%
get_Height()-0%100%
get_Width()-0%100%
get_ClusterId()-0%100%
get_KeyValuePairs()-0%100%
get_Tables()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\FormRecognizer\src\Generated\Models\ExtractedPage.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.CognitiveServices.FormRecognizer.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Extraction information of a single page in a
 20    /// with a document.
 21    /// </summary>
 22    public partial class ExtractedPage
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the ExtractedPage class.
 26        /// </summary>
 027        public ExtractedPage()
 28        {
 29            CustomInit();
 030        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the ExtractedPage class.
 34        /// </summary>
 35        /// <param name="number">Page number.</param>
 36        /// <param name="height">Height of the page (in pixels).</param>
 37        /// <param name="width">Width of the page (in pixels).</param>
 38        /// <param name="clusterId">Cluster identifier.</param>
 39        /// <param name="keyValuePairs">List of Key-Value pairs extracted from
 40        /// the page.</param>
 41        /// <param name="tables">List of Tables and their information extracted
 42        /// from the page.</param>
 043        public ExtractedPage(int? number = default(int?), int? height = default(int?), int? width = default(int?), int? 
 44        {
 045            Number = number;
 046            Height = height;
 047            Width = width;
 048            ClusterId = clusterId;
 049            KeyValuePairs = keyValuePairs;
 050            Tables = tables;
 51            CustomInit();
 052        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59        /// <summary>
 60        /// Gets or sets page number.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "number")]
 063        public int? Number { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets height of the page (in pixels).
 67        /// </summary>
 68        [JsonProperty(PropertyName = "height")]
 069        public int? Height { get; set; }
 70
 71        /// <summary>
 72        /// Gets or sets width of the page (in pixels).
 73        /// </summary>
 74        [JsonProperty(PropertyName = "width")]
 075        public int? Width { get; set; }
 76
 77        /// <summary>
 78        /// Gets or sets cluster identifier.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "clusterId")]
 081        public int? ClusterId { get; set; }
 82
 83        /// <summary>
 84        /// Gets or sets list of Key-Value pairs extracted from the page.
 85        /// </summary>
 86        [JsonProperty(PropertyName = "keyValuePairs")]
 087        public IList<ExtractedKeyValuePair> KeyValuePairs { get; set; }
 88
 89        /// <summary>
 90        /// Gets or sets list of Tables and their information extracted from
 91        /// the page.
 92        /// </summary>
 93        [JsonProperty(PropertyName = "tables")]
 094        public IList<ExtractedTable> Tables { get; set; }
 95
 96    }
 97}