Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is the room tabs API client
func (*Client) List ¶
func (c *Client) List(options *ListOptions) (*RoomTabsPage, error)
List returns a list of room tabs for a specified room
type Config ¶
type Config struct {
}
Config holds the configuration for the RoomTabs plugin
func DefaultConfig ¶
func DefaultConfig() *Config
DefaultConfig returns the default configuration for the RoomTabs plugin
type ListOptions ¶
type ListOptions struct {
RoomID string `url:"roomId,omitempty"`
}
ListOptions contains the options for listing room tabs
type RoomTab ¶
type RoomTab struct {
ID string `json:"id,omitempty"`
RoomID string `json:"roomId,omitempty"`
RoomType string `json:"roomType,omitempty"`
DisplayName string `json:"displayName,omitempty"`
ContentURL string `json:"contentUrl,omitempty"`
CreatorID string `json:"creatorId,omitempty"`
Created *time.Time `json:"created,omitempty"`
}
RoomTab represents a Webex room tab
type RoomTabsPage ¶
RoomTabsPage represents a paginated list of room tabs
Click to show internal directories.
Click to hide internal directories.