| Requires any of the roles: | Client, Admin, Partner |
| POST | /license_transactions |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
@DataContract
public static class LicenseTransactionsAdd
{
@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 Integer getTenantsId() { return TenantsId; }
public LicenseTransactionsAdd setTenantsId(Integer value) { this.TenantsId = value; return this; }
public Long getLicensesId() { return LicensesId; }
public LicenseTransactionsAdd setLicensesId(Long value) { this.LicensesId = value; return this; }
public Date getTransactionDate() { return TransactionDate; }
public LicenseTransactionsAdd setTransactionDate(Date value) { this.TransactionDate = value; return this; }
public Integer getTransactionQuantity() { return TransactionQuantity; }
public LicenseTransactionsAdd setTransactionQuantity(Integer value) { this.TransactionQuantity = value; return this; }
public Double getTransactionAmount() { return TransactionAmount; }
public LicenseTransactionsAdd setTransactionAmount(Double value) { this.TransactionAmount = value; return this; }
}
public static class LicenseTransactionsAddResponse
{
@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 Integer getTenantsId() { return TenantsId; }
public LicenseTransactionsAddResponse setTenantsId(Integer value) { this.TenantsId = value; return this; }
public Long getLicensesId() { return LicensesId; }
public LicenseTransactionsAddResponse setLicensesId(Long value) { this.LicensesId = value; return this; }
public Date getTransactionDate() { return TransactionDate; }
public LicenseTransactionsAddResponse setTransactionDate(Date value) { this.TransactionDate = value; return this; }
public Integer getTransactionQuantity() { return TransactionQuantity; }
public LicenseTransactionsAddResponse setTransactionQuantity(Integer value) { this.TransactionQuantity = value; return this; }
public Double getTransactionAmount() { return TransactionAmount; }
public LicenseTransactionsAddResponse setTransactionAmount(Double value) { this.TransactionAmount = value; return this; }
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public LicenseTransactionsAddResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
}
}
Java LicenseTransactionsAdd 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 /license_transactions HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
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
{
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
}
}
}