Interface ITeamChannelTabConfiguration
Public interface to define the configuration settings for a Team tab
Inherited Members
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public interface ITeamChannelTabConfiguration : IDataModel<ITeamChannelTabConfiguration>, IDataModelParent, IDataModelWithContext, ISupportModules<ITeamChannelTabConfiguration>
Properties
ContentUrl
Url used for rendering tab contents in Teams. Required.
Declaration
string ContentUrl { get; set; }
Property Value
System.String
|
EntityId
Identifier for the entity hosted by the tab provider.
Declaration
string EntityId { get; }
Property Value
System.String
|
HasContent
Is there content in this tab.
Declaration
bool HasContent { get; set; }
Property Value
System.Boolean
|
RemoveUrl
Url called by Teams client when a Tab is removed using the Teams Client.
Declaration
string RemoveUrl { get; set; }
Property Value
System.String
|
WebsiteUrl
Url for showing tab contents outside of Teams.
Declaration
string WebsiteUrl { get; set; }
Property Value
System.String
|
WikiDefaultTab
Is this the default wiki tab.
Declaration
bool WikiDefaultTab { get; set; }
Property Value
System.Boolean
|
WikiTabId
Wiki tab id.
Declaration
int WikiTabId { get; set; }
Property Value
System.Int32
|