qe-fe-automation
Version:
FE test automation framework using cypress
31 lines (27 loc) • 527 B
text/typescript
export enum LoyaltyPricingModel {
PAID = 'paid',
FREE = 'free'
}
export enum LoyaltyCustomerType {
AFFILIATE = 'AFFILIATE',
TA = 'TA'
}
export enum LoyaltyName {
LHG = 'LHG'
}
export interface LoyaltyInfo {
name: LoyaltyName;
values: {
pricingModel: LoyaltyPricingModel;
loyaltyCustomerType?: LoyaltyCustomerType;
};
}
export interface CreditCard {
fullName: string;
givenName: string;
familyName: string;
number: string;
expirationMonth: string;
expirationYear: string;
cvc: string;
}