Sha256: 1f3888181e04670c6ad979b90a4d19f84669f324140ec82d16bacae75ec5772f
Contents?: true
Size: 1.22 KB
Versions: 7
Compression:
Stored size: 1.22 KB
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class GetWorkspaceEventsByTargetRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # Filter to only return events corresponding to a particular gen_lock_id (gen_lock_id uniquely identifies a target) field :target_id, ::String, { 'path_param': { 'field_name': 'targetID', 'style': 'simple', 'explode': false } } # Filter to only return events created after this timestamp field :after_created_at, T.nilable(::DateTime), { 'query_param': { 'field_name': 'after_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(target_id: ::String, after_created_at: T.nilable(::DateTime), workspace_id: T.nilable(::String)).void } def initialize(target_id: nil, after_created_at: nil, workspace_id: nil) @target_id = target_id @after_created_at = after_created_at @workspace_id = workspace_id end end end end
Version data entries
7 entries across 7 versions & 1 rubygems