Sha256: 26f344cc953287f11ab852f9282f6039bc3db111e27023c65088489d888ce5f7

Contents?: true

Size: 441 Bytes

Versions: 2

Compression:

Stored size: 441 Bytes

Contents

# frozen_string_literal: true
# typed: strict

module WorkOS
  module Types
    # This OrganizationMembershipStruct acts as a typed interface for the OrganizationMembership class
    class OrganizationMembershipStruct < T::Struct
      const :id, String
      const :user_id, String
      const :organization_id, T.nilable(String)
      const :status, String
      const :created_at, String
      const :updated_at, String
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workos-4.1.0 lib/workos/types/organization_membership_struct.rb
workos-4.0.0 lib/workos/types/organization_membership_struct.rb