/** * 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 { Address } from './address'; import { AccountListItemQuota } from './accountListItemQuota'; export interface AccountListItem { /** * The unique id of the email account */ readonly id?: string; /** * The name of the email account */ name?: string; /** * The E-Mail address of the email account */ address: string; /** * If true then the account can not authenticate or receive any new mail */ disabled: boolean; /** * List of aliases for this account */ aliases: Array
; quota: AccountListItemQuota; }