| All Verbs | /auth/customerregisteremailrequest | ||
|---|---|---|---|
| POST | /customerregisteremailrequest |
import 'package:servicestack/servicestack.dart';
class CustomerRegistrationEmailRequest implements IConvertible
{
String? Email;
String? EmailId;
String? MobileNumber;
String? MobileId;
CustomerRegistrationEmailRequest({this.Email,this.EmailId,this.MobileNumber,this.MobileId});
CustomerRegistrationEmailRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Email = json['Email'];
EmailId = json['EmailId'];
MobileNumber = json['MobileNumber'];
MobileId = json['MobileId'];
return this;
}
Map<String, dynamic> toJson() => {
'Email': Email,
'EmailId': EmailId,
'MobileNumber': MobileNumber,
'MobileId': MobileId
};
getTypeName() => "CustomerRegistrationEmailRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: <String, TypeInfo> {
'CustomerRegistrationEmailRequest': TypeInfo(TypeOf.Class, create:() => CustomerRegistrationEmailRequest()),
});
Dart CustomerRegistrationEmailRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /auth/customerregisteremailrequest HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"Email":"String","EmailId":"String","MobileNumber":"String","MobileId":"String"}