public GetTransportContentResponse InvokeGetTransportContent()
        {
            // Create a request.
            GetTransportContentRequest request = new GetTransportContentRequest();
            string sellerId = "example";

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

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

            request.ShipmentId = shipmentId;
            return(this.client.GetTransportContent(request));
        }
Esempio n. 2
0
 public GetTransportContentResponse GetTransportContent(GetTransportContentRequest request)
 {
     return(connection.Call(
                new FBAInboundServiceMWSClient.Request <GetTransportContentResponse>("GetTransportContent", typeof(GetTransportContentResponse), servicePath),
                request));
 }
Esempio n. 3
0
 public GetTransportContentResponse GetTransportContent(GetTransportContentRequest request)
 {
     return(newResponse <GetTransportContentResponse>());
 }