com.wix.restaurants.WixRestaurantsClient Maven / Gradle / Ivy
package com.wix.restaurants;
import com.openrest.v1_1.*;
import com.wix.restaurants.authentication.WixRestaurantsAuthenticationClient;
import java.util.List;
public interface WixRestaurantsClient {
WixRestaurantsAuthenticationClient getAuthenticationClient();
RestaurantFullInfo retrieveRestaurantInfo(String restaurantId);
Order submitOrder(Order order);
Order retrieveOrderAsOwner(String orderId, String ownerToken);
List search(Filter filter, int limit);
List retrieveNewOrders(String accessToken, String restaurantId);
Order acceptOrder(String accessToken, String orderId);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy