/** * DuckyAPI * A customer facing api for WildDuck * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CreateUpdateForwarderCommonDtoLimits } from './createUpdateForwarderCommonDtoLimits'; export interface UpdateForwarderDto { /** * Identity name */ name?: string; /** * An array of forwarding targets. The value could either be an email address or a relay url to next MX server (\"smtp://mx2.zone.eu:25\") or an URL where mail contents are POSTed to */ targets?: Array; limits: CreateUpdateForwarderCommonDtoLimits; /** * The E-Mail address that should be forwarded */ address?: string; }