| 605 | } |
| 606 | |
| 607 | type AgentChannelBotBase struct { |
| 608 | AccountID string `json:"accountId"` |
| 609 | Name string `json:"name"` |
| 610 | Enabled bool `json:"enabled"` |
| 611 | IsDefault bool `json:"isDefault"` |
| 612 | } |
| 613 | |
| 614 | func (b AgentChannelBotBase) IsEnabled() bool { |
| 615 | return b.Enabled |
nothing calls this directly
no outgoing calls
no test coverage detected