Returns a tibble of users for an account, or list of accounts.

users(x)

# S3 method for brandseyer2.account
users(x)

# S3 method for character
users(x)

# S3 method for list
users(x)

# S3 method for data.frame
users(x)

Arguments

x

An object to get users for, such as an account object.

Value

A tibble of users.

Methods (by class)

  • brandseyer2.account: List users for an account object.

  • character: List users for accounts given as account codes.

  • list: List users for a list of account objects.

  • data.frame: List users for accounts coded in the account column of a tibble, such as provided by account_list().

Examples

if (FALSE) { account("TEST01AA") %>% users() } if (FALSE) { users("TEST01AA") users(c("TEST01AA", "TEST02AA")) } if (FALSE) { account("TEST01AA", "TEST02AA") %>% users() } if (FALSE) { account_list() %>% users() }