| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Data.Tables.Models |
| | 9 | | { |
| | 10 | | /// <summary> The properties for the table response. </summary> |
| | 11 | | public partial class TableItem |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of TableItem. </summary> |
| 0 | 14 | | internal TableItem() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of TableItem. </summary> |
| | 19 | | /// <param name="tableName"> The name of the table. </param> |
| | 20 | | /// <param name="odataType"> The odata type of the table. </param> |
| | 21 | | /// <param name="odataId"> The id of the table. </param> |
| | 22 | | /// <param name="odataEditLink"> The edit link of the table. </param> |
| 832 | 23 | | internal TableItem(string tableName, string odataType, string odataId, string odataEditLink) |
| | 24 | | { |
| 832 | 25 | | TableName = tableName; |
| 832 | 26 | | OdataType = odataType; |
| 832 | 27 | | OdataId = odataId; |
| 832 | 28 | | OdataEditLink = odataEditLink; |
| 832 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> The name of the table. </summary> |
| 114 | 32 | | public string TableName { get; } |
| | 33 | | /// <summary> The odata type of the table. </summary> |
| 0 | 34 | | public string OdataType { get; } |
| | 35 | | /// <summary> The id of the table. </summary> |
| 0 | 36 | | public string OdataId { get; } |
| | 37 | | /// <summary> The edit link of the table. </summary> |
| 0 | 38 | | public string OdataEditLink { get; } |
| | 39 | | } |
| | 40 | | } |