This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FastBet | |
No Selections* | |
make a selection -> Fast Bet | |
Fast Bet | |
input valid wager amount -> Fast Bet valid Bet | |
input invalid wager amount -> Fast Bet invalid Bet | |
swipe to delete -> No Selections | |
make second selection -> BAB | |
pull down on pill -> BAB | |
remove current selection -> No Selections |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct SwitchEpisodeAction: Action { | |
let episode: STVEpisode | |
} | |
struct AddShowToFavouritesAction: Action { | |
let show: STVShow | |
} | |
struct PlayEpisodeAction: Action { | |
let episode: STVEpisode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
enum APIRequest { | |
case GET | |
case POST | |
} | |
struct Parameter { | |
let key: String! | |
let value: String! |