Class: StackOne::Models::Operations::StackoneListAuthConfigsRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::StackoneListAuthConfigsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/stackone_list_auth_configs_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(connector_key: nil, enabled: nil, page: nil, page_size: 25.0) ⇒ StackoneListAuthConfigsRequest
constructor
A new instance of StackoneListAuthConfigsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(connector_key: nil, enabled: nil, page: nil, page_size: 25.0) ⇒ StackoneListAuthConfigsRequest
Returns a new instance of StackoneListAuthConfigsRequest.
25 26 27 28 29 30 |
# File 'lib/stack_one/models/operations/stackone_list_auth_configs_request.rb', line 25 def initialize(connector_key: nil, enabled: nil, page: nil, page_size: 25.0) @connector_key = connector_key @enabled = enabled @page = page @page_size = page_size end |
Instance Method Details
#==(other) ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/stack_one/models/operations/stackone_list_auth_configs_request.rb', line 33 def ==(other) return false unless other.is_a? self.class return false unless @connector_key == other.connector_key return false unless @enabled == other.enabled return false unless @page == other.page return false unless @page_size == other.page_size true end |