Sha256: 1d92d12d22107a2409e52547c6a5166ba17791d701ceb518ea38e77adad87836
Contents?: true
Size: 987 Bytes
Versions: 1
Compression:
Stored size: 987 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module OpenApiSDK module Operations class GetWorkspaceTargetsDeprecatedRequest < ::OpenApiSDK::Utils::FieldAugmented extend T::Sig # Unique identifier of the workspace. field :workspace_id, ::String, { 'path_param': { 'field_name': 'workspace_id', 'style': 'simple', 'explode': false } } # Filter to only return targets with events created after this timestamp field :after_last_event_created_at, T.nilable(::DateTime), { 'query_param': { 'field_name': 'after_last_event_created_at', 'style': 'form', 'explode': true } } sig { params(workspace_id: ::String, after_last_event_created_at: T.nilable(::DateTime)).void } def initialize(workspace_id: nil, after_last_event_created_at: nil) @workspace_id = workspace_id @after_last_event_created_at = after_last_event_created_at end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
speakeasy_client_sdk_ruby-4.2.24 | lib/open_api_sdk/models/operations/getworkspacetargetsdeprecated_request.rb |