-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
PredictionSystemGeneratedEntities.cs
42 lines (36 loc) · 1.78 KB
/
PredictionSystemGeneratedEntities.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System.Collections.Generic;
using Azure.Core;
namespace Azure.ResourceManager.CustomerInsights.Models
{
/// <summary> System generated entities. </summary>
public partial class PredictionSystemGeneratedEntities
{
/// <summary> Initializes a new instance of PredictionSystemGeneratedEntities. </summary>
internal PredictionSystemGeneratedEntities()
{
GeneratedInteractionTypes = new ChangeTrackingList<string>();
GeneratedLinks = new ChangeTrackingList<string>();
GeneratedKpis = new ChangeTrackingDictionary<string, string>();
}
/// <summary> Initializes a new instance of PredictionSystemGeneratedEntities. </summary>
/// <param name="generatedInteractionTypes"> Generated interaction types. </param>
/// <param name="generatedLinks"> Generated links. </param>
/// <param name="generatedKpis"> Generated KPIs. </param>
internal PredictionSystemGeneratedEntities(IReadOnlyList<string> generatedInteractionTypes, IReadOnlyList<string> generatedLinks, IReadOnlyDictionary<string, string> generatedKpis)
{
GeneratedInteractionTypes = generatedInteractionTypes;
GeneratedLinks = generatedLinks;
GeneratedKpis = generatedKpis;
}
/// <summary> Generated interaction types. </summary>
public IReadOnlyList<string> GeneratedInteractionTypes { get; }
/// <summary> Generated links. </summary>
public IReadOnlyList<string> GeneratedLinks { get; }
/// <summary> Generated KPIs. </summary>
public IReadOnlyDictionary<string, string> GeneratedKpis { get; }
}
}