Bitmovin Player React Native SDK - v1.6.0
    Preparing search index...

    Interface IosMetadataValue

    Typed representations of an iOS metadata value.

    Depending on the underlying value, one or more of these fields may be present; others will be undefined.

    interface IosMetadataValue {
        dataValue?: string;
        dateValue?: string;
        numberValue?: number;
        stringValue?: string;
    }
    Index

    Properties

    dataValue?: string

    A binary representation of the value as Base64 data with no data:...;base64, prefix, if available.

    Use this accessor to retrieve encapsulated artwork, thumbnails, proprietary frames, or any encoded value.

    dateValue?: string

    A date/time representation of the value, formatted as an ISO 8601 string, if available.

    "2025-12-02T00:00:00Z"
    
    numberValue?: number

    A numeric representation of the value, if available.

    stringValue?: string

    A text representation of the value, if available.