private getSoapHeaders()

in lib/client/googleSoap.service.ts [70:86]


  private getSoapHeaders(): any {
    return {
      RequestHeader: {
        attributes: {
          "soapenv:actor": "http://schemas.xmlsoap.org/soap/actor/next",
          "soapenv:mustUnderstand": 0,
          "xsi:type": "ns1:SoapRequestHeader",
          "xmlns:ns1":
            "https://www.google.com/apis/ads/publisher/" + this.apiVersion,
          "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
          "xmlns:soapenv": "http://schemas.xmlsoap.org/soap/envelope/",
        },
        "ns1:networkCode": this.networkCode,
        "ns1:applicationName": this.applicationName,
      },
    };
  }