/* Options: Date: 2026-04-03 16:04:28 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cpmwebservices-t.clarkpud.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: TwilioCallback.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/callback", "POST") class TwilioCallback implements IReturn, IConvertible, IPost { String? accountSid; String? body; String? from; String? messageSid; String? to; TwilioCallback({this.accountSid,this.body,this.from,this.messageSid,this.to}); TwilioCallback.fromJson(Map json) { fromMap(json); } fromMap(Map json) { accountSid = json['accountSid']; body = json['body']; from = json['from']; messageSid = json['messageSid']; to = json['to']; return this; } Map toJson() => { 'accountSid': accountSid, 'body': body, 'from': from, 'messageSid': messageSid, 'to': to }; createResponse() => ""; getResponseTypeName() => "String"; getTypeName() => "TwilioCallback"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'cpmwebservices_t.clarkpud.com', types: { 'TwilioCallback': TypeInfo(TypeOf.Class, create:() => TwilioCallback()), });