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

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

package com.cleeng.api.domain;

import java.io.Serializable;

public class UpdateOfferParams extends OfferParams {

    public String offerId;

    public UpdateOfferParams(String publisherToken, Serializable offerData, String offerId) {

        super(publisherToken, offerData);

        this.offerId = offerId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy