Class: Knockapi::Models::Providers::MsTeamListChannelsParams::QueryOptions
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Knockapi::Models::Providers::MsTeamListChannelsParams::QueryOptions
- Defined in:
- lib/knockapi/models/providers/ms_team_list_channels_params.rb
Instance Attribute Summary collapse
-
#filter ⇒ String?
[OData param](learn.microsoft.com/en-us/graph/query-parameters) passed to the Microsoft Graph API to filter channels.
-
#select_ ⇒ String?
[OData param](learn.microsoft.com/en-us/graph/query-parameters) passed to the Microsoft Graph API to select specific properties.
Instance Method Summary collapse
-
#initialize(filter: nil, select_: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see QueryOptions for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(filter: nil, select_: nil) ⇒ Object
Some parameter documentations has been truncated, see Knockapi::Models::Providers::MsTeamListChannelsParams::QueryOptions for more details.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/knockapi/models/providers/ms_team_list_channels_params.rb', line 37 class QueryOptions < Knockapi::Internal::Type::BaseModel # @!attribute filter # [OData param](https://learn.microsoft.com/en-us/graph/query-parameters) passed # to the Microsoft Graph API to filter channels. # # @return [String, nil] optional :filter, String, api_name: :$filter # @!attribute select_ # [OData param](https://learn.microsoft.com/en-us/graph/query-parameters) passed # to the Microsoft Graph API to select specific properties. # # @return [String, nil] optional :select_, String, api_name: :$select # @!method initialize(filter: nil, select_: nil) # Some parameter documentations has been truncated, see # {Knockapi::Models::Providers::MsTeamListChannelsParams::QueryOptions} for more # details. # # @param filter [String] [OData param](https://learn.microsoft.com/en-us/graph/query-parameters) passed t # # @param select_ [String] [OData param](https://learn.microsoft.com/en-us/graph/query-parameters) passed t end |
Instance Attribute Details
#filter ⇒ String?
[OData param](learn.microsoft.com/en-us/graph/query-parameters) passed to the Microsoft Graph API to filter channels.
43 |
# File 'lib/knockapi/models/providers/ms_team_list_channels_params.rb', line 43 optional :filter, String, api_name: :$filter |
#select_ ⇒ String?
[OData param](learn.microsoft.com/en-us/graph/query-parameters) passed to the Microsoft Graph API to select specific properties.
50 |
# File 'lib/knockapi/models/providers/ms_team_list_channels_params.rb', line 50 optional :select_, String, api_name: :$select |