LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
global class VoucherRepresentation {
    global String currencyIsoCode;
    global String description;
    global Integer discountPercent;
    global Datetime effectiveDate;
    global Datetime expirationDate;
    global Double faceValue;
    global Boolean isVoucherDefinitionActive;
    global Boolean isVoucherPartiallyRedeemable;
    global String partnerAccountName;
    global String productCategoryId;
    global String productCategoryName;
    global String productId;
    global String productName;
    global String promotionId;
    global String promotionName;
    global Double redeemedValue;
    global Double remainingValue;
    global String status;
    global String type;
    global Datetime useDate;
    global String voucherCode;
    global String voucherDefinition;
    global String voucherId;
    global String voucherImageUrl;
    global String voucherNumber;
    global VoucherRepresentation() { }
    global Object clone() { }
    global Boolean equals(Object obj) { }
    global Double getBuildVersion() { }
    global Integer hashCode() { }
    global String toString() { }
 
}