ShoppingOrderType


@Retention(value = RetentionPolicy.SOURCE)
@IntDef(value = [ShoppingOrderType.TYPE_UNKNOWN, ShoppingOrderType.TYPE_IN_STORE_PICKUP, ShoppingOrderType.TYPE_SAME_DAY_DELIVERY, ShoppingOrderType.TYPE_MULTI_DAY_DELIVERY])
public annotation ShoppingOrderType


Type of a shopping order entity.

Summary

Constants

static final int
static final int
static final int
static final int

Constants

TYPE_IN_STORE_PICKUP

public static final int TYPE_IN_STORE_PICKUP = 1

TYPE_MULTI_DAY_DELIVERY

public static final int TYPE_MULTI_DAY_DELIVERY = 3

TYPE_SAME_DAY_DELIVERY

public static final int TYPE_SAME_DAY_DELIVERY = 2

TYPE_UNKNOWN

public static final int TYPE_UNKNOWN = 0