Difference between revisions of "Genre"

From Gvp-public
Jump to navigation Jump to search
 
Line 27: Line 27:
 
<syntaxhighlight lang="javascript">
 
<syntaxhighlight lang="javascript">
 
{
 
{
  List: [
 
      {
 
 
         "ID": 1,
 
         "ID": 1,
 
         "Title": "Action"
 
         "Title": "Action"
      },
 
      {
 
        "ID": 2,
 
        "Title": "Adventure"
 
      },
 
      {
 
        "ID": 3,
 
        "Title": "Drama"
 
      },
 
  ]
 
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>

Latest revision as of 18:34, 27 October 2014

Represents a Genre object. Genre object has the information about the Genre with the ID that is the unique number to reprint that and the title that is the description of the genre. Genre is used usually to classify the content and it can be assigned in many genre. This value is used in the Content Criteria to list the content in a specific channel.

Members

Field Data Type Description
ID int A unique id to identify a genre.
Title String Name of the Genre.


Example

{
        "ID": 1,
        "Title": "Action"
}


Known issues

None


Version history

API Version Number Change description Changes author
1.0 Initial data type implementation Harley Cabral


See also