Interface SelfShareProductsApi
public interface SelfShareProductsApi
-
Method Details
-
retrieveAllProducts1
@GET("v1/self/products/share") retrofit2.Call<String> retrieveAllProducts1(@Query("clientId") Long clientId, @Query("offset") Integer offset, @Query("limit") Integer limit) - Parameters:
clientId- (optional)offset- (optional)limit- (optional)- Returns:
- Call<String>
-
retrieveProduct1
@GET("v1/self/products/share/{productId}") retrofit2.Call<String> retrieveProduct1(@Path("productId") Long productId, @Path("type") String type, @Query("clientId") Long clientId) - Parameters:
productId- (required)type- (required)clientId- (optional)- Returns:
- Call<String>
-
retrieveAllProducts1
@GET("v1/self/products/share") retrofit2.Call<String> retrieveAllProducts1(@Query("clientId") Long clientId, @Query("offset") Integer offset, @Query("limit") Integer limit, @HeaderMap Map<String, String> headers) - Parameters:
clientId- (optional)offset- (optional)limit- (optional)- Returns:
- Call<String>
-
retrieveProduct1
@GET("v1/self/products/share/{productId}") retrofit2.Call<String> retrieveProduct1(@Path("productId") Long productId, @Path("type") String type, @Query("clientId") Long clientId, @HeaderMap Map<String, String> headers) - Parameters:
productId- (required)type- (required)clientId- (optional)- Returns:
- Call<String>
-