/* Options:
Date: 2025-11-04 04:57:33
Version: 8.71
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://team.evovoice.io
//GlobalNamespace: 
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion: 
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: EnsureActionUrl.*
//ExcludeTypes: 
//AddNamespaces: 
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.Endpoints;
using Voice.Api.App;
namespace Voice.Api.App
{
    ///
    ///Ensures that the specified app user endpoint has the action URL mentioned
    ///
    [Route("/app/ensure-action-url", "POST")]
    [Api(Description="Ensures that the specified app user endpoint has the action URL mentioned")]
    public partial class EnsureActionUrl
        : IReturnVoid, IPost
    {
        ///
        ///The URL to use
        ///
        [ApiMember(Description="The URL to use")]
        public virtual string Url { get; set; }
        ///
        ///Clear existing action URLs first
        ///
        [ApiMember(Description="Clear existing action URLs first")]
        public virtual bool ClearExisting { get; set; }
        ///
        ///The HTTP method to use
        ///
        [ApiMember(Description="The HTTP method to use")]
        public virtual ActionUrlHttpMethods Method { get; set; }
    }
}
namespace Voice.Api.Endpoints
{
    public enum ActionUrlHttpMethods
    {
        GET,
        POST,
    }
}