Versions in this module Expand all Collapse all v1 v1.20191031.1 Oct 31, 2019 Changes in this version + const DefaultFirebaseAPIKey + const DefaultFirebaseURL + var DefaultClient = NewClient(http.DefaultClient, DefaultFirebaseURL, nil) + type Auth struct + APIKey string + Password string + Team string + func (a *Auth) IDToken() (string, error) + type Client struct + func NewClient(client *http.Client, baseURL string, auth *Auth) *Client + func (c *Client) GetTeamCurrent(team string) (*TeamPairing, error) + func (c *Client) GetTeamHistorical(team string) (*TeamPairingHistory, error) + func (c *Client) GetTeamLists(team string) (*TeamLists, error) + type TeamList struct + Items TeamListItems + Title string + type TeamListItem struct + Checked bool + Title string + type TeamListItems map[string]TeamListItem + type TeamLists map[string]TeamList + type TeamPairing struct + Entities map[string]TeamPairingEntity + Lanes map[string]TeamPairingLane + type TeamPairingEntity struct + Color string + Icon string + Location string + Name string + Picture string + Tags []string + Type string + UpdatedAt uint + type TeamPairingHistory map[int]TeamPairing + type TeamPairingLane struct + Locked bool + SortOrder uint Other modules containing this package github.com/dpb587/go-pairist/v2