/* Options: Date: 2026-08-17 08:24:01 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WebshopPayoutInfoCreateRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class WebshopPayoutInfo implements IConvertible { int? id; int? ownerId; // @StringLength(200) String? name; // @StringLength(50) String? accountNumber; // @StringLength(20) String? ssn; // @StringLength(100) String? tag; bool? active; int? legacyId; DateTime? createdAt; WebshopPayoutInfo({this.id,this.ownerId,this.name,this.accountNumber,this.ssn,this.tag,this.active,this.legacyId,this.createdAt}); WebshopPayoutInfo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; ownerId = json['ownerId']; name = json['name']; accountNumber = json['accountNumber']; ssn = json['ssn']; tag = json['tag']; active = json['active']; legacyId = json['legacyId']; createdAt = JsonConverters.fromJson(json['createdAt'],'DateTime',context!); return this; } Map toJson() => { 'id': id, 'ownerId': ownerId, 'name': name, 'accountNumber': accountNumber, 'ssn': ssn, 'tag': tag, 'active': active, 'legacyId': legacyId, 'createdAt': JsonConverters.toJson(createdAt,'DateTime',context!) }; getTypeName() => "WebshopPayoutInfo"; TypeContext? context = _ctx; } class WebshopPayoutInfoResult implements IConvertible { WebshopPayoutInfo? item; int? statusCode; String? message; WebshopPayoutInfoResult({this.item,this.statusCode,this.message}); WebshopPayoutInfoResult.fromJson(Map json) { fromMap(json); } fromMap(Map json) { item = JsonConverters.fromJson(json['item'],'WebshopPayoutInfo',context!); statusCode = json['statusCode']; message = json['message']; return this; } Map toJson() => { 'item': JsonConverters.toJson(item,'WebshopPayoutInfo',context!), 'statusCode': statusCode, 'message': message }; getTypeName() => "WebshopPayoutInfoResult"; TypeContext? context = _ctx; } // @Route("/Webshop/PayoutInfo", "POST") class WebshopPayoutInfoCreateRequest implements IReturn, IConvertible { WebshopPayoutInfo? item; int? ownerId; WebshopPayoutInfoCreateRequest({this.item,this.ownerId}); WebshopPayoutInfoCreateRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { item = JsonConverters.fromJson(json['item'],'WebshopPayoutInfo',context!); ownerId = json['ownerId']; return this; } Map toJson() => { 'item': JsonConverters.toJson(item,'WebshopPayoutInfo',context!), 'ownerId': ownerId }; createResponse() => WebshopPayoutInfoResult(); getResponseTypeName() => "WebshopPayoutInfoResult"; getTypeName() => "WebshopPayoutInfoCreateRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'stubbur_app.azurewebsites.net', types: { 'WebshopPayoutInfo': TypeInfo(TypeOf.Class, create:() => WebshopPayoutInfo()), 'WebshopPayoutInfoResult': TypeInfo(TypeOf.Class, create:() => WebshopPayoutInfoResult()), 'WebshopPayoutInfoCreateRequest': TypeInfo(TypeOf.Class, create:() => WebshopPayoutInfoCreateRequest()), });