-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
RelationshipsLookup.cs
49 lines (43 loc) · 2.56 KB
/
RelationshipsLookup.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
43
44
45
46
47
48
49
// 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> The definition of suggested relationship for the type. </summary>
public partial class RelationshipsLookup
{
/// <summary> Initializes a new instance of RelationshipsLookup. </summary>
internal RelationshipsLookup()
{
ProfilePropertyReferences = new ChangeTrackingList<ParticipantProfilePropertyReference>();
RelatedProfilePropertyReferences = new ChangeTrackingList<ParticipantProfilePropertyReference>();
}
/// <summary> Initializes a new instance of RelationshipsLookup. </summary>
/// <param name="profileName"> The relationship profile. </param>
/// <param name="profilePropertyReferences"> The property references for the profile type. </param>
/// <param name="relatedProfileName"> The related profile. </param>
/// <param name="relatedProfilePropertyReferences"> The property references for the related profile type. </param>
/// <param name="existingRelationshipName"> The name of existing Relationship. </param>
internal RelationshipsLookup(string profileName, IReadOnlyList<ParticipantProfilePropertyReference> profilePropertyReferences, string relatedProfileName, IReadOnlyList<ParticipantProfilePropertyReference> relatedProfilePropertyReferences, string existingRelationshipName)
{
ProfileName = profileName;
ProfilePropertyReferences = profilePropertyReferences;
RelatedProfileName = relatedProfileName;
RelatedProfilePropertyReferences = relatedProfilePropertyReferences;
ExistingRelationshipName = existingRelationshipName;
}
/// <summary> The relationship profile. </summary>
public string ProfileName { get; }
/// <summary> The property references for the profile type. </summary>
public IReadOnlyList<ParticipantProfilePropertyReference> ProfilePropertyReferences { get; }
/// <summary> The related profile. </summary>
public string RelatedProfileName { get; }
/// <summary> The property references for the related profile type. </summary>
public IReadOnlyList<ParticipantProfilePropertyReference> RelatedProfilePropertyReferences { get; }
/// <summary> The name of existing Relationship. </summary>
public string ExistingRelationshipName { get; }
}
}