lib/open_api_sdk/models/shared/role.rb



# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

# typed: true
# frozen_string_literal: true


module OpenApiSDK
  module Shared
  
    # Role - The role of the authenticated user in the workspace.
    class Role < T::Enum
      enums do
        OWNER = new('owner')
        MEMBER = new('member')
      end
    end
  end
end