Sha256: c01fcc62eceeb0e0d20806804a44a1e519bb2e9c84d302f9a8c910331f751b60
Contents?: true
Size: 1.3 KB
Versions: 18
Compression:
Stored size: 1.3 KB
Contents
# Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT. # typed: true # frozen_string_literal: true module SpeakeasyClientSDK module Operations class GetWorkspaceEventsRequest < ::SpeakeasyClientSDK::Utils::FieldAugmented extend T::Sig # 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 } } # Filter to only return events corresponding to a particular gen_lock_id (gen_lock_id uniquely identifies a target) field :generate_gen_lock_id, T.nilable(::String), { 'query_param': { 'field_name': 'generate_gen_lock_id', '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_created_at: T.nilable(::DateTime), generate_gen_lock_id: T.nilable(::String), workspace_id: T.nilable(::String)).void } def initialize(after_created_at: nil, generate_gen_lock_id: nil, workspace_id: nil) @after_created_at = after_created_at @generate_gen_lock_id = generate_gen_lock_id @workspace_id = workspace_id end end end end
Version data entries
18 entries across 18 versions & 1 rubygems