Sha256: a52aa0395f4b7797b173a9aafe85c2a414652942012826f7385aa0690c979594
Contents?: true
Size: 1017 Bytes
Versions: 31
Compression:
Stored size: 1017 Bytes
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class GetWorkspaceTargetsRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # 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 } } # Unique identifier of the workspace. field :workspace_id, T.nilable(::String), { 'path_param': { 'field_name': 'workspaceID', 'style': 'simple', 'explode': false } } sig { params(after_last_event_created_at: T.nilable(::DateTime), workspace_id: T.nilable(::String)).void } def initialize(after_last_event_created_at: nil, workspace_id: nil) @after_last_event_created_at = after_last_event_created_at @workspace_id = workspace_id end end end end
Version data entries
31 entries across 31 versions & 1 rubygems