/** * 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 UpdateUserAdminDto { /** * The username for this user */ username: string; /** * The password for this user */ password: string; /** * Package id to assign to this user */ packageId: string; /** * A suspended user doesn\'t have access to most api methods, and all accounts and forwarders are suspended */ suspended: boolean; }