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)
x | An object to get users for, such as an account object. |
---|
A tibble of users.
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()
.
if (FALSE) { account("TEST01AA") %>% users() } if (FALSE) { users("TEST01AA") users(c("TEST01AA", "TEST02AA")) } if (FALSE) { account("TEST01AA", "TEST02AA") %>% users() } if (FALSE) { account_list() %>% users() }