ratingFlags

@SerialName(value = "rating_flags")
val ratingFlags: Int

The ratings for the asset, as bitwise flags.

These available flags are the following:

  • D: Drug-related themes are present
  • V: Violence is present
  • S: Sexual situations are present
  • L: Adult Language is present

This number is a bitwise number to indicate if one or more of these values are present.

  • [D][V][S][L] - 0: No rating flag.
  • [D][V][S][L] - 1: Language flag.
  • [D][V][S][L] - 2: Sex flag.
  • [D][V][S][L] - 4: Violence flag.
  • [D][V][S][L] - 8: Drugs flag.
  • [D][V][S][L] - 15: All flags are on.