-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7574d8
commit ef0483e
Showing
20 changed files
with
233 additions
and
233 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
package gortb | ||
|
||
type Content struct { | ||
ID string `json:"id,omitempty"` | ||
Episode int `json:"episode,omitempty"` | ||
Title string `json:"title,omitempty"` | ||
Series string `json:"series,omitempty"` | ||
Season string `json:"season,omitempty"` | ||
Artist string `json:"artist,omitempty"` | ||
Genre string `json:"genre,omitempty"` | ||
Album string `json:"album,omitempty"` | ||
ISRC string `json:"isrc,omitempty"` | ||
Producer *Producer `json:"producer,omitempty"` | ||
URL string `json:"url,omitempty"` | ||
Cat []string `json:"cat,omitempty"` | ||
Probq int `json:"probq,omitempty"` | ||
VideoQuality int `json:"videoquality,omitempty"` // Deprecated | ||
Context int `json:"context,omitempty"` | ||
ContentRating string `json:"contentrating,omitempty"` | ||
UserRating string `json:"userrating,omitempty"` | ||
QAGMediaRating int `json:"qagmediarating,omitempty"` | ||
Keywords string `json:"keywords,omitempty"` | ||
LiveStream int `json:"livestream,omitempty"` | ||
SourceRelationship int `json:"sourcerelationship,omitempty"` | ||
Length int `json:"len,omitempty"` | ||
Language string `json:"language,omitempty"` | ||
Embeddable int `json:"embeddable,omitempty"` | ||
Data []Data `json:"data,omitempty"` | ||
Ext interface{} `json:"ext,omitempty"` | ||
} | ||
ID string `json:"id,omitempty"` | ||
Episode int `json:"episode,omitempty"` | ||
Title string `json:"title,omitempty"` | ||
Series string `json:"series,omitempty"` | ||
Season string `json:"season,omitempty"` | ||
Artist string `json:"artist,omitempty"` | ||
Genre string `json:"genre,omitempty"` | ||
Album string `json:"album,omitempty"` | ||
ISRC string `json:"isrc,omitempty"` | ||
Producer *Producer `json:"producer,omitempty"` | ||
URL string `json:"url,omitempty"` | ||
Cat []string `json:"cat,omitempty"` | ||
Probq int `json:"probq,omitempty"` | ||
VideoQuality int `json:"videoquality,omitempty"` // Deprecated | ||
Context int `json:"context,omitempty"` | ||
ContentRating string `json:"contentrating,omitempty"` | ||
UserRating string `json:"userrating,omitempty"` | ||
QAGMediaRating int `json:"qagmediarating,omitempty"` | ||
Keywords string `json:"keywords,omitempty"` | ||
LiveStream int `json:"livestream,omitempty"` | ||
SourceRelationship int `json:"sourcerelationship,omitempty"` | ||
Length int `json:"len,omitempty"` | ||
Language string `json:"language,omitempty"` | ||
Embeddable int `json:"embeddable,omitempty"` | ||
Data []Data `json:"data,omitempty"` | ||
Ext interface{} `json:"ext,omitempty"` | ||
} |
Oops, something went wrong.