| | 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> Parameter group. </summary> |
| | 11 | | internal partial class QueryOptions |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of QueryOptions. </summary> |
| 3408 | 14 | | public QueryOptions() |
| | 15 | | { |
| 3408 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Specifies the media type for the response. </summary> |
| 10224 | 19 | | public OdataMetadataFormat? Format { get; set; } |
| | 20 | | /// <summary> Maximum number of records to return. </summary> |
| 1696 | 21 | | public int? Top { get; set; } |
| | 22 | | /// <summary> Select expression using OData notation. Limits the columns on each record to just those requested, |
| 1584 | 23 | | public string Select { get; set; } |
| | 24 | | /// <summary> OData filter expression. </summary> |
| 2244 | 25 | | public string Filter { get; set; } |
| | 26 | | } |
| | 27 | | } |