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

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

package com.notronix.lw.methods.inventory;

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

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

public class GetInventoryItemExtendedPropertiesMethod extends InventoryMethod>
{
    private String itemId;

    @Override
    public String getName()
    {
        return "GetInventoryItemExtendedProperties";
    }

    @Override
    public String getPayload()
    {
        return "inventoryItemId=" + (itemId == null ? "" : itemId);
    }

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

    public String getItemId()
    {
        return itemId;
    }

    public void setItemId(String itemId)
    {
        this.itemId = itemId;
    }

    public GetInventoryItemExtendedPropertiesMethod withItemId(String itemId)
    {
        this.itemId = itemId;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy