/** * 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 { AccountDetailsLimits } from './accountDetailsLimits'; import { Address } from './address'; export interface AccountDetails { /** * 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
; /** * Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam */ spamLevel: number; /** * List of scopes that are disabled for this user */ disabledScopes: Array; limits: AccountDetailsLimits; }