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

com.notronix.lw.methods.inventory.GetStockLocationsMethod Maven / Gradle / Ivy

package com.notronix.lw.methods.inventory;

import com.google.gson.Gson;
import com.notronix.lw.LinnworksAPIException;
import com.notronix.lw.model.StockLocation;

import java.util.Arrays;
import java.util.List;

public class GetStockLocationsMethod extends InventoryMethod>
{
    @Override
    public String getName()
    {
        return "GetStockLocations";
    }

    @Override
    public String getPayload()
    {
        return null;
    }

    @Override
    public List getResponse()
            throws LinnworksAPIException
    {
        return Arrays.asList(new Gson().fromJson(getJsonResult(), StockLocation[].class));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy