# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class ListDomainsRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # The ID of the workspace. field :workspace_id, T.nilable(::String), { 'query_param': { 'field_name': 'workspaceId', 'style': 'form', 'explode': true } } sig { params(workspace_id: T.nilable(::String)).void } def initialize(workspace_id: nil) @workspace_id = workspace_id end end end end