| POST | /cmd/users/correct/cinfo |
|---|
import 'package:servicestack/servicestack.dart';
class ContactInfo implements IConvertible
{
String? phone;
String? email;
ContactInfo({this.phone,this.email});
ContactInfo.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
phone = json['phone'];
email = json['email'];
return this;
}
Map<String, dynamic> toJson() => {
'phone': phone,
'email': email
};
getTypeName() => "ContactInfo";
TypeContext? context = _ctx;
}
class CorrectUserContactInfo implements IConvertible
{
String? id;
ContactInfo? contactInfo;
CorrectUserContactInfo({this.id,this.contactInfo});
CorrectUserContactInfo.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
contactInfo = JsonConverters.fromJson(json['contactInfo'],'ContactInfo',context!);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'contactInfo': JsonConverters.toJson(contactInfo,'ContactInfo',context!)
};
getTypeName() => "CorrectUserContactInfo";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.sbbet.ath.cx', types: <String, TypeInfo> {
'ContactInfo': TypeInfo(TypeOf.Class, create:() => ContactInfo()),
'CorrectUserContactInfo': TypeInfo(TypeOf.Class, create:() => CorrectUserContactInfo()),
});
Dart CorrectUserContactInfo 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.
POST /cmd/users/correct/cinfo HTTP/1.1
Host: api.sbbet.ath.cx
Accept: application/json
Content-Type: application/json
Content-Length: length
{"id":"String","contactInfo":{"phone":"String","email":"String"}}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}