Game MetaInfo

The meta info object is a property of liveblog and contain the basic liveblog information (title, opponents, start date, …).

Examples

Tik::Model::GameMetaInfo::TitleGameMetaInfo

  "meta_info": {
    "_type": "Tik::Model::GameMetaInfo::TitleGameMetaInfo",
    "allow_comments": false, // only valid for community liveblog
    "editorial_publishing": false, 
    "starts_at": 1578996000,
    "title": "Your title"
  }

Used for simple templates like “News”, “Blog” and “Other Sports”.

Tik::Model::GameMetaInfo::TeamGameMetaInfo

  "meta_info": {
    "_type": "Tik::Model::GameMetaInfo::TeamGameMetaInfo",
    "allow_comments": false,
    "away_team": {
      "_id": "TEAM_ID",
      "_type": "Tik::Model::Team",
      "image": "https://some.image.url/test.png",
      "name": "Bayern München",
      "owner_id": "OWNER_ID",
      "short_name": "FCB",
      "sportstype": "soccer"
    },
    "home_team": {
      ...
    },
    "editorial_publishing": false,
    "starts_at": 1578920400
  }

Used for team sport templates like “Soccer”, “Handball” and “Icehockey”.