/**
 *
 * @export
 * @interface AccountAuthRequest
 */
export interface AccountAuthRequest {
    /**
     *
     * @type {string}
     * @memberof AccountAuthRequest
     */
    username?: string | null;
    /**
     *
     * @type {string}
     * @memberof AccountAuthRequest
     */
    password?: string | null;
}
