/* Options: Date: 2025-05-04 22:50:06 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EnsureActionUrl.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export interface IPost { } export enum ActionUrlHttpMethods { GET = 'GET', POST = 'POST', } /** @description 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") export class EnsureActionUrl implements IReturnVoid, IPost { /** @description The URL to use */ // @ApiMember(Description="The URL to use") public url: string; /** @description Clear existing action URLs first */ // @ApiMember(Description="Clear existing action URLs first") public clearExisting: boolean; /** @description The HTTP method to use */ // @ApiMember(Description="The HTTP method to use") public method: ActionUrlHttpMethods; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EnsureActionUrl'; } public getMethod() { return 'POST'; } public createResponse() {} }