VoucherInfo.java
1.11 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
*/
package com.adobe.cq.commerce.api.promotion;
import aQute.bnd.annotation.ProviderType;
@ProviderType
public class VoucherInfo {
private String code;
private String path;
private String title;
private String description;
private boolean isValid;
private String message;
public VoucherInfo(String code, String path, String title, String description, boolean isValid, String message) {
this.code = code;
this.path = path;
this.title = title;
this.description = description;
this.isValid = isValid;
this.message = message;
}
public String getPath() {
return this.path;
}
public String getTitle() {
return this.title;
}
public String getDescription() {
return this.description;
}
public String getCode() {
return this.code;
}
public boolean getIsValid() {
return this.isValid;
}
public String getMessage() {
return this.message;
}
}