public GetBillOfLadingResponse InvokeGetBillOfLading()
        {
            // Create a request.
            GetBillOfLadingRequest request = new GetBillOfLadingRequest();
            string sellerId = "example";

            request.SellerId = sellerId;
            string mwsAuthToken = "example";

            request.MWSAuthToken = mwsAuthToken;
            string shipmentId = "example";

            request.ShipmentId = shipmentId;
            return(this.client.GetBillOfLading(request));
        }
Exemple #2
0
 public GetBillOfLadingResponse GetBillOfLading(GetBillOfLadingRequest request)
 {
     return(connection.Call(
                new FBAInboundServiceMWSClient.Request <GetBillOfLadingResponse>("GetBillOfLading", typeof(GetBillOfLadingResponse), servicePath),
                request));
 }
Exemple #3
0
 public GetBillOfLadingResponse GetBillOfLading(GetBillOfLadingRequest request)
 {
     return(newResponse <GetBillOfLadingResponse>());
 }