1. Multiple Resources - SphereMall/Android-MS-Client GitHub Wiki

Multiple Resources

SDK is supporting different types of resources:

  • Products
  • Attributes
  • Brands
  • FunctionalNames
  • Images
  • Users
  • Address

Examples

// return a list of your products 
client.products().all();

// return a list of your attributes 
client.attributes().all();

// return a list of your brands 
client.brands().all();

// return a list of your functional names
client.functionalNames().all();

// return a list of your images
client.images().all();

// return a list of your users
client.users().all();

// return a list of your addresses
client.addresses().all();