Description Usage Value Methods (by class) Author(s) Examples
Find out the details for the client service person to contact for queries related to your account.
1 2 3 4 5 6 7 8 9 10 11 12 13 | client_service(account)
## S3 method for class 'brandseye.account'
client_service(account)
## S3 method for class 'character'
client_service(code)
## S3 method for class 'factor'
client_service(code)
## S3 method for class 'list'
client_service(accounts)
|
Returns a structure holding information about the
account's client service person, with name
and
email
fields.
As a special case, when given a vector of accounts, this function returns a data frame with name and email columns, and a row per account.
brandseye.account
: Returns client service details for an account object
character
: Returns client service information for an account code.
factor
: Returns the client service information for an account represented by a factor object.
list
: Returns client service information for a vector of account
objects.
Constance Neeser
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## Not run:
details <- client_service(account("QUIR01BA"))
details$name
details$email
## End(Not run)
## Not run:
client_service("QUIR01BA")
## End(Not run)
## Not run:
client_service(c("QUIR01BA", "BEAD33AA"))
client_service(list_account_codes())
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.