VerizonMediaAssetMovieRating

@available(*, deprecated, message: "This enumeration will be removed with the next major release.")
public enum VerizonMediaAssetMovieRating : Int, Decodable

The movie rating of the asset

Remark

In the online documentation the value for 0 is also “NOT RATED”. Since this is counter-intuitive, we have assumed this to be erronous and have modeled this according to the Movie Ratings, with 0 being “NOT APPLICABLE”.
  • The movie rating is not available.

    Declaration

    Swift

    case NOT_AVAILABLE = -1
  • The movie rating is not applicable.

    Declaration

    Swift

    case NOT_APPLICABLE = 0
  • G

    The asset is rated as G.

    Declaration

    Swift

    case G = 1
  • PG

    The asset is rated as P.

    Declaration

    Swift

    case PG = 2
  • The asset is rated as PG-13.

    Declaration

    Swift

    case PG_13 = 3
  • N

    The asset is rated as N.

    Declaration

    Swift

    case N = 4
  • The asset is rated as RC-17.

    Declaration

    Swift

    case RC_17 = 5
  • X

    The asset is rated as X.

    Declaration

    Swift

    case X = 6
  • The asset is not rated.

    Declaration

    Swift

    case NOT_RATED = 7