Back to project page meets-android.
The source code is released under:
MIT License
If you think the Android project meets-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.theagilemonkeys.meets.models; /*w w w . ja v a 2s .co m*/ import com.theagilemonkeys.meets.models.base.MeetsModel; import java.util.List; import java.util.Map; /** * Android Meets SDK * Original work Copyright (c) 2014 [TheAgileMonkeys] * * @author ??lvaro Lpez Espinosa */ public interface MeetsProduct extends MeetsModel<MeetsProduct> { String getType(); String getSku(); String getName(); String getDescription(); double getPrice(); String getImageUrl(); Map<String, String> getImageVersions(); Map<String, String> getAdditionalAttributes(); List<MeetsProduct> getAssociatedProducts(); MeetsProduct fetchImageVersions(); MeetsProduct fetchWithAdditionalAttributes(String... additionalAttributes); MeetsProduct fetchWithAdditionalAttributes(List<String> additionalAttributes); MeetsProduct fetchAssociatedProducts(); }