Skip to contents

Organization Class

Format

An R6Class generator object

Public fields

id

character [optional]

role

OrganizationRoles [optional]

name

character

created_at

character [optional]

updated_at

character [optional]

logo

character [optional]

description

character [optional]

users

list( OrganizationUser ) [optional]

allowed_actions

list( NamespaceActions ) [optional]

num_of_arrays

numeric [optional]

enabled_features

list( character ) [optional]

unpaid_subscription

character [optional]

default_s3_path

character [optional]

default_s3_path_credentials_name

character [optional]

stripe_connect

character [optional]

Methods


Method new()

Usage

Organization$new(
  name,
  id = NULL,
  role = NULL,
  created_at = NULL,
  updated_at = NULL,
  logo = NULL,
  description = NULL,
  users = NULL,
  allowed_actions = NULL,
  num_of_arrays = NULL,
  enabled_features = NULL,
  unpaid_subscription = NULL,
  default_s3_path = NULL,
  default_s3_path_credentials_name = NULL,
  stripe_connect = NULL,
  ...
)


Method toJSON()

Usage

Organization$toJSON()


Method fromJSON()

Usage

Organization$fromJSON(OrganizationJson)


Method toJSONString()

Usage

Organization$toJSONString()


Method fromJSONString()

Usage

Organization$fromJSONString(OrganizationJson)


Method clone()

The objects of this class are cloneable with this method.

Usage

Organization$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.