Table of Contents

Class FabricDataShareListResponseModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

Class that represents the information for a Fabric Data Share.

public class FabricDataShareListResponseModel
Inheritance
FabricDataShareListResponseModel
Inherited Members

Properties

Id

The id of the external data share.

[JsonProperty("Id", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public long Id { get; set; }

Property Value

long

TenantId

The tenant id of the external data share.

[JsonProperty("TenantId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string TenantId { get; set; }

Property Value

string

UserPrincipalName

User principal name (email).
The user principal should be in the same tenant defined in the tenant id.
So, if the tenant id refers to nfielddevelopment.onmicrosoft.com then the email / UserPrincipalName
should be in this domain/tenant.

[JsonProperty("UserPrincipalName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string UserPrincipalName { get; set; }

Property Value

string