Skip to content

Latest commit

 

History

History
36 lines (20 loc) · 903 Bytes

File metadata and controls

36 lines (20 loc) · 903 Bytes

User

Represents an individual user within an organization.

Properties

Name Type Description Notes
_object ObjectEnum The object type, which is always `organization.user`
id String The identifier, which can be referenced in API endpoints
name String The name of the user
email String The email address of the user
role RoleEnum `owner` or `reader`
addedAt Integer The Unix timestamp (in seconds) of when the user was added.

Enum: ObjectEnum

Name Value
ORGANIZATION_USER "organization.user"

Enum: RoleEnum

Name Value
OWNER "owner"
READER "reader"