All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cleeng.api.domain.IsTrialAllowedParams Maven / Gradle / Ivy

package com.cleeng.api.domain;

import java.io.Serializable;

public class IsTrialAllowedParams implements Serializable {

    public String publisherToken;
    public String customerEmail;
    public String offerId;

    public IsTrialAllowedParams(String publisherToken, String customerEmail, String offerId) {
        this.publisherToken = publisherToken;
        this.customerEmail = customerEmail;
        this.offerId = offerId;
    }

    public IsTrialAllowedParams(String customerEmail, String offerId) {
        this.customerEmail = customerEmail;
        this.offerId = offerId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy