/* Options: Date: 2025-05-05 01:03:53 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EnsureActionUrl.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Ensures that the specified app user endpoint has the action URL mentioned */ @Route(Path="/app/ensure-action-url", Verbs="POST") @Api(Description="Ensures that the specified app user endpoint has the action URL mentioned") open class EnsureActionUrl : IReturnVoid, IPost { /** * The URL to use */ @ApiMember(Description="The URL to use") open var url:String? = null /** * Clear existing action URLs first */ @ApiMember(Description="Clear existing action URLs first") open var clearExisting:Boolean? = null /** * The HTTP method to use */ @ApiMember(Description="The HTTP method to use") open var method:ActionUrlHttpMethods? = null } enum class ActionUrlHttpMethods { Get, Post, }