Discovery (discovery)

    Discovery (discovery)


    Article summary

    Discovery Discovery Schema 1.2.0

    Types

    InterestType

    InterestType: {
        INTEREST: 'interest',
        DISINTEREST: 'disinterest',
    },
    
    

    InterestReason

    InterestReason: {
        PLAYLIST: 'playlist',
        REACTION: 'reaction',
        RECORDING: 'recording',
    },
    
    

    EntityInfoResult

    The result for an entityInfo() push or pull.

    type EntityInfoResult = {
      expires: string
      entity: EntityInfo // An EntityInfo object represents an "entity" on the platform. Currently, only entities of type `program` are supported. `programType` must be supplied to identify the program type.
      related?: EntityInfo[] // An EntityInfo object represents an "entity" on the platform. Currently, only entities of type `program` are supported. `programType` must be supplied to identify the program type.
    }
    

    See also:

    EntityInfo


    PurchasedContentResult

    type PurchasedContentResult = {
      expires: string
      totalCount: number
      entries: EntityInfo[] // An EntityInfo object represents an "entity" on the platform. Currently, only entities of type `program` are supported. `programType` must be supplied to identify the program type.
    }
    

    See also:

    EntityInfo



    Was this article helpful?