Table of Contents

Class FabricDataShareResponseModel

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

Class that represents the information for a Fabric Data Share.

public class FabricDataShareResponseModel
Inheritance
FabricDataShareResponseModel
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

InvitationUrl

The url to the invitation for the Fabric Data Share.

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

Property Value

Uri

Status

The current status of the Fabric Data Share.

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

Property Value

string

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