/** * 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 CreateAccountDto { /** * 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 E-Mail address of the email account */ address: string; /** * The new password of the email account */ password: string; }