/** * 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 Package { /** * Unique id for this package */ readonly _id?: object; /** * Display name to use for this package */ name: 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; }