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

com.notronix.etsy.impl.method.FindSuggestedStylesMethod Maven / Gradle / Ivy

There is a newer version: 3.0.0014
Show newest version
package com.notronix.etsy.impl.method;

import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.notronix.etsy.impl.model.EtsyStyle;

import java.util.List;

public class FindSuggestedStylesMethod extends AbstractEtsyMethod>
{
    @Override
    String getURI() {
        return "/taxonomy/styles";
    }

    @Override
    public List getResponse(Gson gson, String jsonPayload) {
        EtsyResponse> response =
                gson.fromJson(jsonPayload, new TypeToken>>(){}.getType());

        return response.getResults();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy