package com.linx.lio;

import android.support.annotation.IntDef;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@IntDef({PaymentMethod.DEBIT, PaymentMethod.POST_DATED_DEBIT, PaymentMethod.CREDIT,
        PaymentMethod.CREDIT_INSTALLMENTS_STORE, PaymentMethod.CREDIT_INSTALLMENTS_ADM,
        PaymentMethod.PRE_AUTHORIZED, PaymentMethod.FOOD_VOUCHER, PaymentMethod.MEAL_VOUCHER})
@Retention(RetentionPolicy.SOURCE)
@interface PaymentMethod {
    int DEBIT = 0x0111;
    int POST_DATED_DEBIT = 0x0112;
    int CREDIT = 0x0211;
    int CREDIT_INSTALLMENTS_STORE = 0x0222;
    int CREDIT_INSTALLMENTS_ADM = 0x0224;
    int PRE_AUTHORIZED = 0x0411;
    int FOOD_VOUCHER = 0x0811;
    int MEAL_VOUCHER = 0x0812;
}