Skip to contents

Invitation Class

Format

An R6Class generator object

Public fields

id

character [optional]

invitation_type

InvitationType [optional]

owner_namespace_uuid

character [optional]

user_namespace_uuid

character [optional]

organization_user_uuid

character [optional]

organization_name

character [optional]

organization_role

OrganizationRoles [optional]

array_uuid

character [optional]

array_name

character [optional]

email

character [optional]

actions

character [optional]

status

InvitationStatus [optional]

created_at

character [optional]

expires_at

character [optional]

accepted_at

character [optional]

Methods


Method new()

Usage

Invitation$new(
  id = NULL,
  invitation_type = NULL,
  owner_namespace_uuid = NULL,
  user_namespace_uuid = NULL,
  organization_user_uuid = NULL,
  organization_name = NULL,
  organization_role = NULL,
  array_uuid = NULL,
  array_name = NULL,
  email = NULL,
  actions = NULL,
  status = NULL,
  created_at = NULL,
  expires_at = NULL,
  accepted_at = NULL,
  ...
)


Method toJSON()

Usage

Invitation$toJSON()


Method fromJSON()

Usage

Invitation$fromJSON(InvitationJson)


Method toJSONString()

Usage

Invitation$toJSONString()


Method fromJSONString()

Usage

Invitation$fromJSONString(InvitationJson)


Method clone()

The objects of this class are cloneable with this method.

Usage

Invitation$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.