""" Options: Date: 2025-10-22 05:01:24 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: SyncCompanyMembers.* #ExcludeTypes: #DefaultImports: datetime,decimal,marshmallow.fields:*,servicestack:*,typing:*,dataclasses:dataclass/field,dataclasses_json:dataclass_json/LetterCase/Undefined/config,enum:Enum/IntEnum #DataClass: #DataClassJson: """ import datetime import decimal from marshmallow.fields import * from servicestack import * from typing import * from dataclasses import dataclass, field from dataclasses_json import dataclass_json, LetterCase, Undefined, config from enum import Enum, IntEnum # @Route("/mailchimp/member/company/sync", "PUT") # @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE) @dataclass class SyncCompanyMembers: # @ApiMember(Description="Should we delete emails that do not exist in BokaMera.") delete_non_existing: bool = False """ Should we delete emails that do not exist in BokaMera. """ # @ApiMember(Description="Determines if it is a test user") test: bool = False """ Determines if it is a test user """ # @ApiMember(Description="Determines if it sync was executed manually by click in superAdmin") manual: bool = False """ Determines if it sync was executed manually by click in superAdmin """ # @ApiMember(Description="The company id of member of which members you want to sync.") member_company_id: Optional[str] = None """ The company id of member of which members you want to sync. """