Sha256: 79b81650c31692196af4c36a5b706825f2c7f0cb11efbaf6291c47ed0e577903
Contents?: true
Size: 822 Bytes
Versions: 25
Compression:
Stored size: 822 Bytes
Contents
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. # typed: true # frozen_string_literal: true module StackOne module Operations # LMS Users Filter class LmsListUsersQueryParamFilter < ::StackOne::Utils::FieldAugmented extend T::Sig # Filter to select users by email field :email, T.nilable(::String), { 'query_param': { 'field_name': 'email' } } # Use a string with a date to only select results updated after that given date field :updated_after, T.nilable(::String), { 'query_param': { 'field_name': 'updated_after' } } sig { params(email: T.nilable(::String), updated_after: T.nilable(::String)).void } def initialize(email: nil, updated_after: nil) @email = email @updated_after = updated_after end end end end
Version data entries
25 entries across 25 versions & 1 rubygems