All Verbs | /hellotypes/{Name} |
---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
import com.google.gson.annotations.*;
import com.google.gson.reflect.*;
public class dtos
{
public static class HelloTypes
{
public String string = null;
public Boolean bool = null;
@SerializedName("int") public Integer Int = null;
public String getString() { return string; }
public HelloTypes setString(String value) { this.string = value; return this; }
public Boolean isBool() { return bool; }
public HelloTypes setBool(Boolean value) { this.bool = value; return this; }
public Integer getInt() { return Int; }
public HelloTypes setInt(Integer value) { this.Int = value; return this; }
}
}
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 /hellotypes/{Name} HTTP/1.1
Host: test.servicestack.net
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
string: String,
bool: False,
int: 0
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { string: String, bool: False, int: 0 }