| Name | Type | Description | Notes |
|---|---|---|---|
| group_oid | Integer | The unique object identifier (oid for short) for this group | [optional] |
| name | String | The name of this group. | [optional] |
| notifications | Array<Notification> | A list of notifications the user receives. | [optional] |
| permissions | Array<Permission> | A list of permissions the user enjoys for accessing the backend of UltraCart. | [optional] |
| users | Array<GroupUserMembership> | A list of users that belong to this group. | [optional] |
require 'ultracart_api'
instance = UltracartClient::Group.new(
group_oid: null,
name: null,
notifications: null,
permissions: null,
users: null
)