/** * 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 { CreateUpdateAccountLimits } from './createUpdateAccountLimits'; export interface UpdateAccountDto { /** * The name of the email account */ name?: string; /** * Relative scale for detecting spam. 0 means that everything is spam, 100 means that nothing is spam */ spamLevel?: number; limits: CreateUpdateAccountLimits; /** * List of scopes that are disabled for this user */ disabledScopes?: Array; /** * The new password of the email account */ password?: string; /** * If true then the account can not authenticate or receive any new mail */ disabled?: boolean; }