Skip to contents

User Class

Format

An R6Class generator object

Public fields

id

character [optional]

username

character

password

character [optional]

name

character [optional]

email

character [optional]

is_valid_email

character [optional]

stripe_connect

character [optional]

company

character [optional]

logo

character [optional]

last_activity_date

character [optional]

timezone

character [optional]

organizations

list( OrganizationUser ) [optional]

allowed_actions

list( NamespaceActions ) [optional]

enabled_features

list( character ) [optional]

unpaid_subscription

character [optional]

default_s3_path

character [optional]

default_s3_path_credentials_name

character [optional]

default_namespace_charged

character [optional]

Methods


Method new()

Usage

User$new(
  username,
  id = NULL,
  password = NULL,
  name = NULL,
  email = NULL,
  is_valid_email = NULL,
  stripe_connect = NULL,
  company = NULL,
  logo = NULL,
  last_activity_date = NULL,
  timezone = NULL,
  organizations = NULL,
  allowed_actions = NULL,
  enabled_features = NULL,
  unpaid_subscription = NULL,
  default_s3_path = NULL,
  default_s3_path_credentials_name = NULL,
  default_namespace_charged = NULL,
  ...
)


Method toJSON()

Usage

User$toJSON()


Method fromJSON()

Usage

User$fromJSON(UserJson)


Method toJSONString()

Usage

User$toJSONString()


Method fromJSONString()

Usage

User$fromJSONString(UserJson)


Method clone()

The objects of this class are cloneable with this method.

Usage

User$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.