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

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

package com.cleeng.api.domain.async;

import com.cleeng.api.AsyncRequestCallback;

import java.io.Serializable;

public class AsyncUpdateOfferRequest extends AsyncOfferRequest {

    public String offerId;

    public AsyncUpdateOfferRequest(Serializable offerData, AsyncRequestCallback callback, String offerId) {

        super(offerData, callback);

        this.offerId = offerId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy