com.cleeng.api.domain.SubscriptionOfferData Maven / Gradle / Ivy
package com.cleeng.api.domain;
import java.util.List;
public class SubscriptionOfferData extends BaseOfferDataRequest {
public String period;
public int freePeriods;
public int freeDays;
public List accessToTags;
public SubscriptionOfferData(double price,
String period,
String title,
String url,
String description,
String associateEmail,
int freePeriods,
int freeDays,
List accessToTags,
boolean geoRestrictionEnabled,
String geoRestrictionType,
List geoRestrictionCountries) {
super( price,
title,
url,
description,
geoRestrictionEnabled,
geoRestrictionType,
geoRestrictionCountries,
associateEmail
);
this.period = period;
this.freeDays = freeDays;
this.freePeriods = freePeriods;
this.accessToTags = accessToTags;
}
}