/* Options: Date: 2025-04-11 17:05:42 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SyncCustomers.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/voss/sync/customers", Verbs="PUT") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class SyncCustomers { /** * 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 UUID CompanyId = null; public UUID PackageId = null; public Boolean Demo = null; public UUID getCompanyId() { return CompanyId; } public SyncCustomers setCompanyId(UUID value) { this.CompanyId = value; return this; } public UUID getPackageId() { return PackageId; } public SyncCustomers setPackageId(UUID value) { this.PackageId = value; return this; } public Boolean isDemo() { return Demo; } public SyncCustomers setDemo(Boolean value) { this.Demo = value; return this; } } }