| All Verbs | /TriAssignBatchToRack |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class TriAssignBatchToRack
{
/**
* Batch ID
*/
@ApiMember(Description="Batch ID", IsRequired=true)
public String BatchId = null;
/**
* Rack name
*/
@ApiMember(Description="Rack name", IsRequired=true)
public String RackName = null;
/**
* User id
*/
@ApiMember(Description="User id", IsRequired=true)
public String UserId = null;
/**
* Printer
*/
@ApiMember(Description="Printer")
public String Printer = null;
public String getBatchId() { return BatchId; }
public TriAssignBatchToRack setBatchId(String value) { this.BatchId = value; return this; }
public String getRackName() { return RackName; }
public TriAssignBatchToRack setRackName(String value) { this.RackName = value; return this; }
public String getUserId() { return UserId; }
public TriAssignBatchToRack setUserId(String value) { this.UserId = value; return this; }
public String getPrinter() { return Printer; }
public TriAssignBatchToRack setPrinter(String value) { this.Printer = value; return this; }
}
}
Java TriAssignBatchToRack DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /TriAssignBatchToRack HTTP/1.1
Host: clouddemo.pickeos.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
BatchId: String,
RackName: String,
UserId: String,
Printer: String
}