Skip to content

Commit

Permalink
.NET SDK Resource Provider:'Graph.RBAC'
Browse files Browse the repository at this point in the history
REST Spec PR 'Azure/azure-rest-api-specs#5417'
REST Spec PR Author 'ankushbindlish2'
REST Spec PR Last commit
  • Loading branch information
adxsdknet committed Mar 18, 2019
1 parent 56d5f6d commit 44a7f37
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
namespace Microsoft.Azure.Graph.RBAC.Models
{
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

/// <summary>
Expand All @@ -31,10 +33,10 @@ public ServicePrincipalObjectResult()
/// Initializes a new instance of the ServicePrincipalObjectResult
/// class.
/// </summary>
/// <param name="value">Service Principal Application Object Id</param>
/// <param name="value">A collection of Application Objects.</param>
/// <param name="odatametadata">The URL representing edm
/// equivalent.</param>
public ServicePrincipalObjectResult(string value = default(string), string odatametadata = default(string))
public ServicePrincipalObjectResult(IList<string> value = default(IList<string>), string odatametadata = default(string))
{
Value = value;
Odatametadata = odatametadata;
Expand All @@ -47,10 +49,10 @@ public ServicePrincipalObjectResult()
partial void CustomInit();

/// <summary>
/// Gets or sets service Principal Application Object Id
/// Gets or sets a collection of Application Objects.
/// </summary>
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
public IList<string> Value { get; set; }

/// <summary>
/// Gets or sets the URL representing edm equivalent.
Expand Down

0 comments on commit 44a7f37

Please sign in to comment.