VoucherInfo.java 1.11 KB
/*
 * 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;
    }
}