Sha256: 8d966d5200d0503a7576038d4b9ea2f4ecf415a70cd98c5badc117e924cc6a13

Contents?: true

Size: 380 Bytes

Versions: 2

Compression:

Stored size: 380 Bytes

Contents

# frozen_string_literal: true
# typed: strict

module WorkOS
  module Types
    # This OrganizationStruct acts as a typed interface
    # for the Organization class
    class OrganizationStruct < T::Struct
      const :id, String
      const :name, String
      const :domains, T::Array[T.untyped]
      const :created_at, String
      const :updated_at, String
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
workos-1.5.1 lib/workos/types/organization_struct.rb
workos-1.5.0 lib/workos/types/organization_struct.rb