com.clover.remote.client.messages.RetrievePrintersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote-pay-java-connector Show documentation
Show all versions of remote-pay-java-connector Show documentation
Clover Connector Java library
package com.clover.remote.client.messages;
import com.clover.sdk.v3.printer.Printer;
import java.util.ArrayList;
import java.util.List;
/**
* Response object for retrieving the printers
*/
public class RetrievePrintersResponse extends BaseResponse {
private List printers = new ArrayList<>();
/**
* Constructor
*
* @param printers a list of printers being passed back
*/
public RetrievePrintersResponse(List printers){
this.printers = printers;
}
/**
* Get the field value
*
* @return a list of printers
*/
public List getPrinters() {
return printers;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy