| All Verbs | /GetSendMessageStatus |
|---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class GetSendMessageStatusResponse implements IConvertible
{
String? Result;
bool? ServiceSuccessResult;
String? ErrorMesage;
GetSendMessageStatusResponse({this.Result,this.ServiceSuccessResult,this.ErrorMesage});
GetSendMessageStatusResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Result = json['Result'];
ServiceSuccessResult = json['ServiceSuccessResult'];
ErrorMesage = json['ErrorMesage'];
return this;
}
Map<String, dynamic> toJson() => {
'Result': Result,
'ServiceSuccessResult': ServiceSuccessResult,
'ErrorMesage': ErrorMesage
};
getTypeName() => "GetSendMessageStatusResponse";
TypeContext? context = _ctx;
}
class GetSendMessageStatus implements IConvertible
{
String? AuthorizationID;
String? ClientKey;
int? RemID;
GetSendMessageStatus({this.AuthorizationID,this.ClientKey,this.RemID});
GetSendMessageStatus.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
AuthorizationID = json['AuthorizationID'];
ClientKey = json['ClientKey'];
RemID = json['RemID'];
return this;
}
Map<String, dynamic> toJson() => {
'AuthorizationID': AuthorizationID,
'ClientKey': ClientKey,
'RemID': RemID
};
getTypeName() => "GetSendMessageStatus";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'remservices.eyyubiye.bel.tr', types: <String, TypeInfo> {
'GetSendMessageStatusResponse': TypeInfo(TypeOf.Class, create:() => GetSendMessageStatusResponse()),
'GetSendMessageStatus': TypeInfo(TypeOf.Class, create:() => GetSendMessageStatus()),
});
Dart GetSendMessageStatus 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 /GetSendMessageStatus HTTP/1.1
Host: remservices.eyyubiye.bel.tr
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
AuthorizationID: String,
ClientKey: String,
RemID: 0
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Result: String,
ServiceSuccessResult: False,
ErrorMesage: String
}