Sha256: d72b64c4820120bd6317803b7d2a9b2f8ef46ed1adcf96bf8fb6579de13648b5
Contents?: true
Size: 1014 Bytes
Versions: 7
Compression:
Stored size: 1014 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). 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
7 entries across 7 versions & 1 rubygems