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

com.cleeng.api.domain.async.AsyncUpdateVodOfferRequest Maven / Gradle / Ivy

package com.cleeng.api.domain.async;

import com.cleeng.api.AsyncRequestCallback;
import com.cleeng.api.domain.VodOfferData;

public class AsyncUpdateVodOfferRequest extends AsyncCreateVodOfferRequest {

    public String offerIdString;

    public AsyncUpdateVodOfferRequest(String publisherToken, VodOfferData offerData, AsyncRequestCallback callback, String offerId) {

        super(publisherToken, offerData, callback);

        this.offerIdString = offerId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy