Class: Aws::ElementalInference::Types::FixtureSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElementalInference::Types::FixtureSummary
- Defined in:
- gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb
Overview
Contains information about one fixture. It is used in the SearchFixtures response.
Elemental Inference relays the information in this structure from the data source, so that you can identify the fixture that matches your source media.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#competitors ⇒ Array<Types::Competitor>
An array of the competitors (the teams or individuals) in the fixture.
-
#fixture_group ⇒ String
The group that the fixture belongs to, such as the competition, league, or tournament.
-
#fixture_id ⇒ String
The ID of the fixture.
-
#name ⇒ String
The name of the fixture, as provided by the data source.
-
#scheduled_start ⇒ Time
The scheduled start time of the fixture, as provided by the data source.
-
#status ⇒ String
The status of the fixture in its lifecycle, as provided by the data source.
Instance Attribute Details
#competitors ⇒ Array<Types::Competitor>
An array of the competitors (the teams or individuals) in the fixture.
681 682 683 684 685 686 687 688 689 690 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 681 class FixtureSummary < Struct.new( :fixture_id, :name, :fixture_group, :scheduled_start, :status, :competitors) SENSITIVE = [] include Aws::Structure end |
#fixture_group ⇒ String
The group that the fixture belongs to, such as the competition, league, or tournament. The data source doesn't provide this information for every fixture.
681 682 683 684 685 686 687 688 689 690 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 681 class FixtureSummary < Struct.new( :fixture_id, :name, :fixture_group, :scheduled_start, :status, :competitors) SENSITIVE = [] include Aws::Structure end |
#fixture_id ⇒ String
The ID of the fixture. Specify this ID in the clipping output of a feed, to identify the fixture whose event data you want Elemental Inference to map onto the clipping metadata.
681 682 683 684 685 686 687 688 689 690 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 681 class FixtureSummary < Struct.new( :fixture_id, :name, :fixture_group, :scheduled_start, :status, :competitors) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the fixture, as provided by the data source. For example, the names of the two competing teams.
681 682 683 684 685 686 687 688 689 690 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 681 class FixtureSummary < Struct.new( :fixture_id, :name, :fixture_group, :scheduled_start, :status, :competitors) SENSITIVE = [] include Aws::Structure end |
#scheduled_start ⇒ Time
The scheduled start time of the fixture, as provided by the data source. The actual start time might differ.
681 682 683 684 685 686 687 688 689 690 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 681 class FixtureSummary < Struct.new( :fixture_id, :name, :fixture_group, :scheduled_start, :status, :competitors) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the fixture in its lifecycle, as provided by the data source. For example, Scheduled or Completed.
681 682 683 684 685 686 687 688 689 690 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 681 class FixtureSummary < Struct.new( :fixture_id, :name, :fixture_group, :scheduled_start, :status, :competitors) SENSITIVE = [] include Aws::Structure end |