| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System.Collections.Generic; |
| | 9 | | using Azure.Core; |
| | 10 | |
|
| | 11 | | namespace Azure.ResourceManager.DigitalTwins.Models |
| | 12 | | { |
| | 13 | | /// <summary> A list of DigitalTwins service operations. It contains a list of operations and a URL link to get the |
| | 14 | | public partial class OperationListResult |
| | 15 | | { |
| | 16 | | /// <summary> Initializes a new instance of OperationListResult. </summary> |
| 0 | 17 | | internal OperationListResult() |
| | 18 | | { |
| 0 | 19 | | Value = new ChangeTrackingList<Operation>(); |
| 0 | 20 | | } |
| | 21 | |
|
| | 22 | | /// <summary> Initializes a new instance of OperationListResult. </summary> |
| | 23 | | /// <param name="nextLink"> The link used to get the next page of DigitalTwins description objects. </param> |
| | 24 | | /// <param name="value"> A list of DigitalTwins operations supported by the Microsoft.DigitalTwins resource prov |
| 0 | 25 | | internal OperationListResult(string nextLink, IReadOnlyList<Operation> value) |
| | 26 | | { |
| 0 | 27 | | NextLink = nextLink; |
| 0 | 28 | | Value = value; |
| 0 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <summary> The link used to get the next page of DigitalTwins description objects. </summary> |
| 0 | 32 | | public string NextLink { get; } |
| | 33 | | /// <summary> A list of DigitalTwins operations supported by the Microsoft.DigitalTwins resource provider. </sum |
| 0 | 34 | | public IReadOnlyList<Operation> Value { get; } |
| | 35 | | } |
| | 36 | | } |