/* Options: Date: 2025-10-14 12:54:11 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SyncCompanyCustomerMembers.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } // @Route("/mailchimp/member/company/customer/sync", "PUT") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) export class SyncCompanyCustomerMembers implements ICompany { /** @description 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.") public CompanyId?: string; /** @description Should we delete emails that do not exist in BokaMera. */ // @ApiMember(Description="Should we delete emails that do not exist in BokaMera.") public DeleteNonExisting: boolean; /** @description Should we target only subscribed to newsletter customers. */ // @ApiMember(Description="Should we target only subscribed to newsletter customers.") public OnlySubscribed: boolean; /** @description Determines if it is a test user */ // @ApiMember(Description="Determines if it is a test user") public Test: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SyncCompanyCustomerMembers'; } public getMethod() { return 'PUT'; } public createResponse() {} }