| Requires any of the roles: | Client, Admin, Partner |
| PUT | /license_transactions/{Id} |
|---|
import 'package:servicestack/servicestack.dart';
class LicenseTransactionsEditResponse implements IConvertible
{
// @DataMember(Order=1)
int? Id;
// @DataMember(Order=2)
int? TenantsId;
// @DataMember(Order=3)
int? LicensesId;
// @DataMember(Order=4)
DateTime? TransactionDate;
// @DataMember(Order=5)
int? TransactionQuantity;
// @DataMember(Order=6)
double? TransactionAmount;
// @DataMember(Order=8)
ResponseStatus? ResponseStatus;
LicenseTransactionsEditResponse({this.Id,this.TenantsId,this.LicensesId,this.TransactionDate,this.TransactionQuantity,this.TransactionAmount,this.ResponseStatus});
LicenseTransactionsEditResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
TenantsId = json['TenantsId'];
LicensesId = json['LicensesId'];
TransactionDate = JsonConverters.fromJson(json['TransactionDate'],'DateTime',context!);
TransactionQuantity = json['TransactionQuantity'];
TransactionAmount = JsonConverters.toDouble(json['TransactionAmount']);
ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id,
'TenantsId': TenantsId,
'LicensesId': LicensesId,
'TransactionDate': JsonConverters.toJson(TransactionDate,'DateTime',context!),
'TransactionQuantity': TransactionQuantity,
'TransactionAmount': TransactionAmount,
'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!)
};
getTypeName() => "LicenseTransactionsEditResponse";
TypeContext? context = _ctx;
}
// @DataContract
class LicenseTransactionsEdit implements IConvertible
{
// @DataMember(Order=1)
// @Validate(Validator="NotNull")
int? Id;
// @DataMember(Order=2)
// @Validate(Validator="NotNull")
int? TenantsId;
// @DataMember(Order=3)
// @Validate(Validator="NotNull")
int? LicensesId;
// @DataMember(Order=4)
// @Validate(Validator="NotNull")
DateTime? TransactionDate;
// @DataMember(Order=5)
// @Validate(Validator="NotNull")
int? TransactionQuantity;
// @DataMember(Order=6)
// @Validate(Validator="NotNull")
double? TransactionAmount;
LicenseTransactionsEdit({this.Id,this.TenantsId,this.LicensesId,this.TransactionDate,this.TransactionQuantity,this.TransactionAmount});
LicenseTransactionsEdit.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Id = json['Id'];
TenantsId = json['TenantsId'];
LicensesId = json['LicensesId'];
TransactionDate = JsonConverters.fromJson(json['TransactionDate'],'DateTime',context!);
TransactionQuantity = json['TransactionQuantity'];
TransactionAmount = JsonConverters.toDouble(json['TransactionAmount']);
return this;
}
Map<String, dynamic> toJson() => {
'Id': Id,
'TenantsId': TenantsId,
'LicensesId': LicensesId,
'TransactionDate': JsonConverters.toJson(TransactionDate,'DateTime',context!),
'TransactionQuantity': TransactionQuantity,
'TransactionAmount': TransactionAmount
};
getTypeName() => "LicenseTransactionsEdit";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: <String, TypeInfo> {
'LicenseTransactionsEditResponse': TypeInfo(TypeOf.Class, create:() => LicenseTransactionsEditResponse()),
'LicenseTransactionsEdit': TypeInfo(TypeOf.Class, create:() => LicenseTransactionsEdit()),
});
Dart LicenseTransactionsEdit DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
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: application/xml
Content-Type: application/xml
Content-Length: length
<LicenseTransactionsEdit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/digitaluapi.ServiceModel">
<Id>0</Id>
<TenantsId>0</TenantsId>
<LicensesId>0</LicensesId>
<TransactionDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>0001-01-01T00:00:00Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</TransactionDate>
<TransactionQuantity>0</TransactionQuantity>
<TransactionAmount>0</TransactionAmount>
</LicenseTransactionsEdit>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<LicenseTransactionsEditResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/digitaluapi.ServiceModel">
<Id>0</Id>
<LicensesId>0</LicensesId>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
<TenantsId>0</TenantsId>
<TransactionAmount>0</TransactionAmount>
<TransactionDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
<d2p1:DateTime>0001-01-01T00:00:00Z</d2p1:DateTime>
<d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
</TransactionDate>
<TransactionQuantity>0</TransactionQuantity>
</LicenseTransactionsEditResponse>