AccountDataTenantId Property  | 
 
            Gets or sets the ID of the tenant associated with the account/group.
            
 
    Namespace: 
   Dundas.BI.WebApi.Models
    Assembly:
   Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntax[DataMemberAttribute(Name = "tenantId", EmitDefaultValue = false)]
public Guid? TenantId {
	[ObsoleteAttribute("Use the TenantIds collection")]
	get;
 set; }<DataMemberAttribute(Name := "tenantId", EmitDefaultValue := false)>
Public Property TenantId As Guid?
	<ObsoleteAttribute("Use the TenantIds collection")>
	Get
	Setpublic:
[DataMemberAttribute(Name = L"tenantId", EmitDefaultValue = false)]
property Nullable<Guid> TenantId {
	[ObsoleteAttribute(L"Use the TenantIds collection")]
	Nullable<Guid> get ();
	void set (Nullable<Guid> value);
}[<DataMemberAttribute(Name = "tenantId", EmitDefaultValue = false)>]
member TenantId : Nullable<Guid> with 
	[<ObsoleteAttribute("Use the TenantIds collection")>]
	get, set
Property Value
Type: 
NullableGuid
            The ID of the tenant, or 
 if the account/group is not associated with a tenant.
            
Remarks
            This property can only be set when the account/group is first created.
            For accounts, once the account has been created, this property represents the ID of the last tenant used by the account.
            
See Also