/* Options: Date: 2025-12-14 02:06:29 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SyncCustomersCompanyOwners.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/voss/sync/customers/companyOwners", "PUT") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class SyncCustomersCompanyOwners implements IConvertible, IPut { /** * The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") String? CompanyId; bool? Demo; SyncCustomersCompanyOwners({this.CompanyId,this.Demo}); SyncCustomersCompanyOwners.fromJson(Map json) { fromMap(json); } fromMap(Map json) { CompanyId = json['CompanyId']; Demo = json['Demo']; return this; } Map toJson() => { 'CompanyId': CompanyId, 'Demo': Demo }; getTypeName() => "SyncCustomersCompanyOwners"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.bokamera.se', types: { 'SyncCustomersCompanyOwners': TypeInfo(TypeOf.Class, create:() => SyncCustomersCompanyOwners()), });