/** * 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. */ export interface User { /** * Unique id for this user */ _id: string; /** * The username for this user */ username: string; /** * A suspended user doesn\'t have access to most api methods, and all accounts and forwarders are suspended */ suspended: boolean; /** * User roles */ roles: Array; /** * Package id for this user */ packageId: string; /** * Storage quota in bytes, 0 is unlimited */ quota: number; /** * Max send quota for accounts created by this user, 0 is unlimited */ maxSend: number; /** * Max recieve quota for accounts created by this user, 0 is unlimited */ maxReceive: number; /** * Max forward quota for accounts created by this user, 0 is unlimited */ maxForward: number; }