/* Options: Date: 2025-07-01 17:35:49 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: DeletePresetBehaviour.* //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/presetBehaviour", Verbs="DELETE") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class DeletePresetBehaviour { /** * Preset behaviour id to delete */ @ApiMember(Description="Preset behaviour id to delete", IsRequired=true) public UUID PresetBehaviourId = null; public UUID getPresetBehaviourId() { return PresetBehaviourId; } public DeletePresetBehaviour setPresetBehaviourId(UUID value) { this.PresetBehaviourId = value; return this; } } }