| Requires any of the roles: | Client, Admin, Partner |
| PUT | /license_transactions/{Id} |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
@DataContract
public static class LicenseTransactionsEdit
{
@DataMember(Order=1)
@Validate(Validator="NotNull")
public Long Id = null;
@DataMember(Order=2)
@Validate(Validator="NotNull")
public Integer TenantsId = null;
@DataMember(Order=3)
@Validate(Validator="NotNull")
public Long LicensesId = null;
@DataMember(Order=4)
@Validate(Validator="NotNull")
public Date TransactionDate = null;
@DataMember(Order=5)
@Validate(Validator="NotNull")
public Integer TransactionQuantity = null;
@DataMember(Order=6)
@Validate(Validator="NotNull")
public Double TransactionAmount = null;
public Long getId() { return Id; }
public LicenseTransactionsEdit setId(Long value) { this.Id = value; return this; }
public Integer getTenantsId() { return TenantsId; }
public LicenseTransactionsEdit setTenantsId(Integer value) { this.TenantsId = value; return this; }
public Long getLicensesId() { return LicensesId; }
public LicenseTransactionsEdit setLicensesId(Long value) { this.LicensesId = value; return this; }
public Date getTransactionDate() { return TransactionDate; }
public LicenseTransactionsEdit setTransactionDate(Date value) { this.TransactionDate = value; return this; }
public Integer getTransactionQuantity() { return TransactionQuantity; }
public LicenseTransactionsEdit setTransactionQuantity(Integer value) { this.TransactionQuantity = value; return this; }
public Double getTransactionAmount() { return TransactionAmount; }
public LicenseTransactionsEdit setTransactionAmount(Double value) { this.TransactionAmount = value; return this; }
}
public static class LicenseTransactionsEditResponse
{
@DataMember(Order=1)
public Long Id = null;
@DataMember(Order=2)
public Integer TenantsId = null;
@DataMember(Order=3)
public Long LicensesId = null;
@DataMember(Order=4)
public Date TransactionDate = null;
@DataMember(Order=5)
public Integer TransactionQuantity = null;
@DataMember(Order=6)
public Double TransactionAmount = null;
@DataMember(Order=8)
public ResponseStatus ResponseStatus = null;
public Long getId() { return Id; }
public LicenseTransactionsEditResponse setId(Long value) { this.Id = value; return this; }
public Integer getTenantsId() { return TenantsId; }
public LicenseTransactionsEditResponse setTenantsId(Integer value) { this.TenantsId = value; return this; }
public Long getLicensesId() { return LicensesId; }
public LicenseTransactionsEditResponse setLicensesId(Long value) { this.LicensesId = value; return this; }
public Date getTransactionDate() { return TransactionDate; }
public LicenseTransactionsEditResponse setTransactionDate(Date value) { this.TransactionDate = value; return this; }
public Integer getTransactionQuantity() { return TransactionQuantity; }
public LicenseTransactionsEditResponse setTransactionQuantity(Integer value) { this.TransactionQuantity = value; return this; }
public Double getTransactionAmount() { return TransactionAmount; }
public LicenseTransactionsEditResponse setTransactionAmount(Double value) { this.TransactionAmount = value; return this; }
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public LicenseTransactionsEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
}
}
Java LicenseTransactionsEdit 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.
PUT /license_transactions/{Id} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
TenantsId: 0,
LicensesId: 0,
TransactionDate: 0001-01-01T00:00:00.0000000+00:00,
TransactionQuantity: 0,
TransactionAmount: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
TenantsId: 0,
LicensesId: 0,
TransactionDate: 0001-01-01T00:00:00.0000000+00:00,
TransactionQuantity: 0,
TransactionAmount: 0,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}