All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.bingads.internal.ServiceUtils Maven / Gradle / Ivy

Go to download

The Bing Ads Java SDK is a library improving developer experience when working with the Bing Ads services by providing high-level access to features such as Bulk API, OAuth Authorization and SOAP API.

There is a newer version: 13.0.23.2
Show newest version
package com.microsoft.bingads.internal;

import java.util.Map;
import javax.xml.ws.Response;

/**
 * Reserved for internal use. 
 */
public class ServiceUtils {

    public static String TRACKING_KEY = "com.microsoft.bingads.trackingId";

    public static String TRACKING_HEADER_NAME = "TrackingId";

    public static String GetTrackingId(Response response) {        
        Map context = response.getContext();
    
        return context.get(TRACKING_KEY).toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy