| 1 | <?php | ||
| 12 | abstract class MarketProjection | ||
| 13 | { | ||
| 14 | const COMPETITION = "COMPETITION"; //If not selected then the competition will not be returned with marketCatalogue | ||
| 15 | const EVENT = "EVENT"; //If not selected then the event will not be returned with marketCatalogue | ||
| 16 | const EVENT_TYPE = "EVENT_TYPE"; //If not selected then the eventType will not be returned with marketCatalogue | ||
| 17 | const MARKET_START_TIME = "MARKET_START_TIME"; //If not selected then the start time will not be returned with marketCatalogue | ||
| 18 | const MARKET_DESCRIPTION = "MARKET_DESCRIPTION"; //If not selected then the description will not be returned with marketCatalogue | ||
| 19 | const RUNNER_DESCRIPTION = "RUNNER_DESCRIPTION";// not selected then the runners will not be returned with marketCatalogue | ||
| 20 | const RUNNER_METADATA = "RUNNER_METADATA";//If not selected then the runner metadata will not be returned with marketCatalogue. If selected then RUNNER_DESCRIPTION will also be returned regardless of whether it is included as a market projection. | ||
| 21 | |||
| 22 | public static function getAll() | ||
| 34 | } | ||
| 35 |