DeleteShortLinksOptionsTenantId Property  | 
 Gets or sets the ID to be associated of the tenant associated with the specified account.
 
    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")]
public Guid? TenantId { get; set; }<DataMemberAttribute(Name := "tenantId")>
Public Property TenantId As Guid?
	Get
	Set
public:
[DataMemberAttribute(Name = L"tenantId")]
property Nullable<Guid> TenantId {
	Nullable<Guid> get ();
	void set (Nullable<Guid> value);
}[<DataMemberAttribute(Name = "tenantId")>]
member TenantId : Nullable<Guid> with get, set
Property Value
Type: 
NullableGuid
            The ID of the tenant associated with the short link, or 
 if the link is not
            associated with a tenant.
            
Exceptions| Exception | Condition | 
|---|
| ArgumentException | The value is being set to Empty. | 
Remarks
            If a value is specified for this property, and the corresponding tenant gets deleted, the short link
            will be deleted as well.
            Note: this is not a security control; a short link which is associated with a tenant can still be
            resolved by any user.
            
See Also