type dynamoBarTabFields … func (f *dynamoBarTabFields) SetDrinks(drinks int) { … } func (f *dynamoBarTabFields) SetFood(food int) { … } func (f *dynamoBarTabFields) SetSpecials(specials int) { … } func (f *dynamoBarTabFields) SetRounds(rounds int) { … } func (f *dynamoBarTabFields) SetDebt(debt int) { … } func (f *dynamoBarTabFields) SetCutoffs(cutoffs int) { … } func (f *dynamoBarTabFields) SetTips(tips int) { … } func (f *dynamoBarTabFields) SetBlackjackWins(wins int) { … } func (f *dynamoBarTabFields) SetBlackjackLosses(losses int) { … } func (f *dynamoBarTabFields) SetAllOrders(orders map[string]int) { … } func (f *dynamoBarTabFields) GetDrinks() int { … } func (f *dynamoBarTabFields) GetFood() int { … } func (f *dynamoBarTabFields) GetSpecials() int { … } func (f *dynamoBarTabFields) GetRounds() int { … } func (f *dynamoBarTabFields) GetDebt() int { … } func (f *dynamoBarTabFields) GetCutoffs() int { … } func (f *dynamoBarTabFields) GetTips() int { … } func (f *dynamoBarTabFields) GetBlackjackWins() int { … } func (f *dynamoBarTabFields) GetBlackjackLosses() int { … } func (f *dynamoBarTabFields) GetAllOrders() map[string]int { … } type BarTab … func (t *BarTab) Wallet() int { … } func (t *BarTab) Ledger() []common.LedgerItem { … } func (t *BarTab) MakeTip(amount int) { … } func (t *BarTab) TotalOrders() int { … } func (t *BarTab) TotalDrinks() int { … } func (t *BarTab) TotalFood() int { … } func (t *BarTab) TotalSpecials() int { … } func (t *BarTab) TotalRounds() int { … } func (t *BarTab) RecordCutoff(drinks int) { … } func (t *BarTab) Debt() int { … } func (t *BarTab) Spend(reason string, amount int) { … } func (t *BarTab) Receive(reason string, amount int) { … } func (t *BarTab) Orders(item string) int { … } func (t *BarTab) RecordOrder(item string, category common.OrderType) { … } func (t *BarTab) Cutoffs() int { … } func (t *BarTab) Tips() int { … } func (t *BarTab) BlackjackWins() int { … } func (t *BarTab) BlackjackLosses() int { … } func (t *BarTab) MostOrderedDrink() (drink string) { … } func (t *BarTab) TrackBlackJackGame(won bool, amount int) { … }