/* Options: Date: 2026-06-22 22:51:51 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CustomerLinkRevokeRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class CustomerLinkRevokeResponse implements IConvertible { ResponseStatus? ResponseStatus; bool? Success; CustomerLinkRevokeResponse({this.ResponseStatus,this.Success}); CustomerLinkRevokeResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); Success = json['Success']; return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!), 'Success': Success }; getTypeName() => "CustomerLinkRevokeResponse"; TypeContext? context = _ctx; } // @Route("/v1/customerlink/{CustomerLinkId}", "DELETE,OPTIONS") class CustomerLinkRevokeRequest implements IReturn, IConvertible, IDelete { int? CustomerLinkId; CustomerLinkRevokeRequest({this.CustomerLinkId}); CustomerLinkRevokeRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CustomerLinkId = json['CustomerLinkId']; return this; } Map toJson() => { 'CustomerLinkId': CustomerLinkId }; createResponse() => CustomerLinkRevokeResponse(); getResponseTypeName() => "CustomerLinkRevokeResponse"; getTypeName() => "CustomerLinkRevokeRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: { 'CustomerLinkRevokeResponse': TypeInfo(TypeOf.Class, create:() => CustomerLinkRevokeResponse()), 'CustomerLinkRevokeRequest': TypeInfo(TypeOf.Class, create:() => CustomerLinkRevokeRequest()), });