@adcp/client API Reference - v4.19.0
    Preparing search index...

    Interface HTMLAsset

    HTML content asset

    interface HTMLAsset {
        content: string;
        version?: string;
        accessibility?: {
            alt_text?: string;
            keyboard_navigable?: boolean;
            motion_control?: boolean;
            screen_reader_tested?: boolean;
        };
        provenance?: Provenance;
    }
    Index

    Properties

    content: string

    HTML content

    version?: string

    HTML version (e.g., 'HTML5')

    accessibility?: {
        alt_text?: string;
        keyboard_navigable?: boolean;
        motion_control?: boolean;
        screen_reader_tested?: boolean;
    }

    Self-declared accessibility properties for this opaque creative

    Type Declaration

    • Optionalalt_text?: string

      Text alternative describing the creative content

    • Optionalkeyboard_navigable?: boolean

      Whether the creative can be fully operated via keyboard

    • Optionalmotion_control?: boolean

      Whether the creative respects prefers-reduced-motion or provides pause/stop controls

    • Optionalscreen_reader_tested?: boolean

      Whether the creative has been tested with screen readers

    provenance?: Provenance