| PUT | /auto/segments/{Id} |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class SegmentsAutoQueryEdit implements IUpdateDb<Segments>
{
@DataMember(Order=1)
public Integer Id = null;
@DataMember(Order=2)
public Integer TenantsId = null;
@DataMember(Order=3)
public String Name = null;
@DataMember(Order=4)
public Boolean IsCustom = null;
public Integer getId() { return Id; }
public SegmentsAutoQueryEdit setId(Integer value) { this.Id = value; return this; }
public Integer getTenantsId() { return TenantsId; }
public SegmentsAutoQueryEdit setTenantsId(Integer value) { this.TenantsId = value; return this; }
public String getName() { return Name; }
public SegmentsAutoQueryEdit setName(String value) { this.Name = value; return this; }
public Boolean getIsCustom() { return IsCustom; }
public SegmentsAutoQueryEdit setIsCustom(Boolean value) { this.IsCustom = value; return this; }
}
public static class Segments
{
@DataMember(Order=1)
@Required()
public Long Id = null;
@DataMember(Order=2)
@Required()
@References(Type=Tenants.class)
public Integer TenantsId = null;
@DataMember(Order=3)
@Required()
public String Name = null;
@DataMember(Order=4)
public Boolean IsCustom = null;
public Long getId() { return Id; }
public Segments setId(Long value) { this.Id = value; return this; }
public Integer getTenantsId() { return TenantsId; }
public Segments setTenantsId(Integer value) { this.TenantsId = value; return this; }
public String getName() { return Name; }
public Segments setName(String value) { this.Name = value; return this; }
public Boolean getIsCustom() { return IsCustom; }
public Segments setIsCustom(Boolean value) { this.IsCustom = value; return this; }
}
}
Java SegmentsAutoQueryEdit DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /auto/segments/{Id} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"Id":0,"TenantsId":0,"Name":"String","IsCustom":false}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"Id":0,"TenantsId":0,"Name":"String","IsCustom":false}