lib/open_api_sdk/models/operations/getworkspace_request.rb



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

# typed: true
# frozen_string_literal: true


module OpenApiSDK
  module Operations
  

    class GetWorkspaceRequest < ::Crystalline::FieldAugmented
      extend T::Sig

      # The ID or slug of the workspace.
      field :id_or_slug, ::String, { 'path_param': { 'field_name': 'idOrSlug', 'style': 'simple', 'explode': false } }


      sig { params(id_or_slug: ::String).void }
      def initialize(id_or_slug: nil)
        @id_or_slug = id_or_slug
      end
    end
  end
end