com.cleeng.api.domain.SingleOfferData Maven / Gradle / Ivy
package com.cleeng.api.domain;
import java.util.List;
public class SingleOfferData extends BaseOfferDataRequest {
public String videoId;
public String contentExternalId;
public String contentExternalData;
public List tags;
public SingleOfferData(double price,
String title,
String url,
String description,
String associateEmail,
String videoId,
String contentExternalId,
String contentExternalData,
List tags,
boolean geoRestrictionEnabled,
String geoRestrictionType,
List geoRestrictionCountries) {
super( price,
title,
url,
description,
geoRestrictionEnabled,
geoRestrictionType,
geoRestrictionCountries,
associateEmail
);
this.videoId = videoId;
this.contentExternalId = contentExternalId;
this.contentExternalData = contentExternalData;
this.tags = tags;
}
}