/* Options: Date: 2024-12-23 11:26:55 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UnstarAdMessageRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library ConsumerApi; import 'package:servicestack/servicestack.dart'; class UnstarAdMessageResponse implements IConvertible { int? unstarredAdMessageId; UnstarAdMessageResponse({this.unstarredAdMessageId}); UnstarAdMessageResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { unstarredAdMessageId = json['unstarredAdMessageId']; return this; } Map toJson() => { 'unstarredAdMessageId': unstarredAdMessageId }; getTypeName() => "UnstarAdMessageResponse"; TypeContext? context = _ctx; } // @Route("/admessage/UnstarAdMessage", "DELETE") class UnstarAdMessageRequest implements IReturn, IDelete, IConvertible { int? adMessageId; UnstarAdMessageRequest({this.adMessageId}); UnstarAdMessageRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { adMessageId = json['adMessageId']; return this; } Map toJson() => { 'adMessageId': adMessageId }; createResponse() => UnstarAdMessageResponse(); getResponseTypeName() => "UnstarAdMessageResponse"; getTypeName() => "UnstarAdMessageRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ConsumerApi', types: { 'UnstarAdMessageResponse': TypeInfo(TypeOf.Class, create:() => UnstarAdMessageResponse()), 'UnstarAdMessageRequest': TypeInfo(TypeOf.Class, create:() => UnstarAdMessageRequest()), });