public GetPreorderInfoResponse InvokeGetPreorderInfo()
        {
            // Create a request.
            GetPreorderInfoRequest request = new GetPreorderInfoRequest();
            string sellerId = "example";

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

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

            request.Marketplace = marketplace;
            string shipmentId = "example";

            request.ShipmentId = shipmentId;
            return(this.client.GetPreorderInfo(request));
        }
Пример #2
0
 public GetPreorderInfoResponse GetPreorderInfo(GetPreorderInfoRequest request)
 {
     return(connection.Call(
                new FBAInboundServiceMWSClient.Request <GetPreorderInfoResponse>("GetPreorderInfo", typeof(GetPreorderInfoResponse), servicePath),
                request));
 }