GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeGAMDelegate - React Native

export interface BlazeGAMDelegate {

    /**
     * This function will be triggered every time an event on an ad will happen.
     * 
     * @param params The data associated with the ad involved in the event.
     */
    onGAMAdEvent?: (params: BlazeGAMDelegateOnAdEventParams) => void;

    /**
     * Called when an error occurs during ad loading or playback.
     * 
     * @param errorMessage The error message associated with the error.
     */
    onGAMAdError?: (errorMessage: string) => void;

    /**
     * Returns custom targeting properties to be added to the GAM ad request.
     * This is called asynchronously from the native side right before an ad request.
     * 
     * @param params The request data information provides additional  info regarding the current ad request.
     * @returns A dictionary of key-value pairs to be added to the ad request
     */
    customGAMTargetingProperties?: (params: BlazeGAMCustomNativeAdRequestParams) => Record<string, string>;

    /**
     * Returns custom targeting properties to be added to the GAM ad request.
     * This is called asynchronously from the native side right before an ad request.
     * 
     * @param params The request data information provides additional  info regarding the current ad request.
     * @returns A custom publisher-provided identifier (PPID) for more granular targeting.
     */
    publisherProvidedId?: (params: BlazeGAMCustomNativeAdRequestParams) => string | undefined;

    /**
     * Provides additional network extras through GADExtras for customizing ad requests.
     * Use this to set network-specific parameters that can enhance ad targeting or behavior.
     * 
     * @param params The request data information provides additional  info regarding the current ad request.
     * @returns A dictionary of key-value pairs to be added to the ad request
     */
    networkExtras?: (params: BlazeGAMCustomNativeAdRequestParams) => Record<string, BlazePrimitive>;
}

Functions

onGAMAdEvent

This function will be triggered by our SDK whenever there's an event related to ads. You can find more about the params here.


onGAMAdError

Called when an error occurs during ad operations.


Did this page help you?