How to get all possible arguments for a wordpress function

I think you are confusing function arguments with author (user) meta fields. To get all user meta fields you can use get_user_meta() with empty $key parameter. For example, for user with ID 45:

$user_meta = get_user_meta( 45 );

$user_meta will be an array with all meta fields for the user with ID = 45.