/* Options: Date: 2025-07-05 21:15:32 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateUser.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class InvoiceAddress implements IConvertible { String? CorporateIdentityNumber; String? InvoiceAddress1; String? InvoiceAddress2; String? InvoiceCity; String? InvoicePostalCode; String? InvoiceCountryCode; InvoiceAddress({this.CorporateIdentityNumber,this.InvoiceAddress1,this.InvoiceAddress2,this.InvoiceCity,this.InvoicePostalCode,this.InvoiceCountryCode}); InvoiceAddress.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CorporateIdentityNumber = json['CorporateIdentityNumber']; InvoiceAddress1 = json['InvoiceAddress1']; InvoiceAddress2 = json['InvoiceAddress2']; InvoiceCity = json['InvoiceCity']; InvoicePostalCode = json['InvoicePostalCode']; InvoiceCountryCode = json['InvoiceCountryCode']; return this; } Map toJson() => { 'CorporateIdentityNumber': CorporateIdentityNumber, 'InvoiceAddress1': InvoiceAddress1, 'InvoiceAddress2': InvoiceAddress2, 'InvoiceCity': InvoiceCity, 'InvoicePostalCode': InvoicePostalCode, 'InvoiceCountryCode': InvoiceCountryCode }; getTypeName() => "InvoiceAddress"; TypeContext? context = _ctx; } class CreateUserResponse implements IConvertible { dynamic? ResponseStatus; String? Id; String? UserId; String? Email; String? Firstname; String? Lastname; String? Phone; DateTime? CreatedDate; InvoiceAddress? InvoiceAddress; CreateUserResponse({this.ResponseStatus,this.Id,this.UserId,this.Email,this.Firstname,this.Lastname,this.Phone,this.CreatedDate,this.InvoiceAddress}); CreateUserResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'dynamic',context!); Id = json['Id']; UserId = json['UserId']; Email = json['Email']; Firstname = json['Firstname']; Lastname = json['Lastname']; Phone = json['Phone']; CreatedDate = JsonConverters.fromJson(json['CreatedDate'],'DateTime',context!); InvoiceAddress = JsonConverters.fromJson(json['InvoiceAddress'],'InvoiceAddress',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'dynamic',context!), 'Id': Id, 'UserId': UserId, 'Email': Email, 'Firstname': Firstname, 'Lastname': Lastname, 'Phone': Phone, 'CreatedDate': JsonConverters.toJson(CreatedDate,'DateTime',context!), 'InvoiceAddress': JsonConverters.toJson(InvoiceAddress,'InvoiceAddress',context!) }; getTypeName() => "CreateUserResponse"; TypeContext? context = _ctx; } // @Route("/users", "POST") // @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) class CreateUser implements IReturn, IConvertible, IPost { // @ApiMember(IsRequired=true) String? Firstname; // @ApiMember(IsRequired=true) String? Lastname; // @ApiMember() String? Phone; // @ApiMember(IsRequired=true) String? Email; InvoiceAddress? InvoiceAddress; CreateUser({this.Firstname,this.Lastname,this.Phone,this.Email,this.InvoiceAddress}); CreateUser.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Firstname = json['Firstname']; Lastname = json['Lastname']; Phone = json['Phone']; Email = json['Email']; InvoiceAddress = JsonConverters.fromJson(json['InvoiceAddress'],'InvoiceAddress',context!); return this; } Map toJson() => { 'Firstname': Firstname, 'Lastname': Lastname, 'Phone': Phone, 'Email': Email, 'InvoiceAddress': JsonConverters.toJson(InvoiceAddress,'InvoiceAddress',context!) }; createResponse() => CreateUserResponse(); getResponseTypeName() => "CreateUserResponse"; getTypeName() => "CreateUser"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'InvoiceAddress': TypeInfo(TypeOf.Class, create:() => InvoiceAddress()), 'CreateUserResponse': TypeInfo(TypeOf.Class, create:() => CreateUserResponse()), 'CreateUser': TypeInfo(TypeOf.Class, create:() => CreateUser()), });