Class: StackOne::Models::Operations::StackoneListLinkedAccountsRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::StackoneListLinkedAccountsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/stackone_list_linked_accounts_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(account_ids: nil, origin_owner_ids: nil, providers: nil, status: nil, origin_owner_id: nil, page: nil, provider: nil, page_size: 25.0) ⇒ StackoneListLinkedAccountsRequest
constructor
A new instance of StackoneListLinkedAccountsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(account_ids: nil, origin_owner_ids: nil, providers: nil, status: nil, origin_owner_id: nil, page: nil, provider: nil, page_size: 25.0) ⇒ StackoneListLinkedAccountsRequest
Returns a new instance of StackoneListLinkedAccountsRequest.
35 36 37 38 39 40 41 42 43 44 |
# File 'lib/stack_one/models/operations/stackone_list_linked_accounts_request.rb', line 35 def initialize(account_ids: nil, origin_owner_ids: nil, providers: nil, status: nil, origin_owner_id: nil, page: nil, provider: nil, page_size: 25.0) @account_ids = account_ids @origin_owner_ids = origin_owner_ids @providers = providers @status = status @origin_owner_id = origin_owner_id @page = page @provider = provider @page_size = page_size end |
Instance Method Details
#==(other) ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/stack_one/models/operations/stackone_list_linked_accounts_request.rb', line 47 def ==(other) return false unless other.is_a? self.class return false unless @account_ids == other.account_ids return false unless @origin_owner_ids == other.origin_owner_ids return false unless @providers == other.providers return false unless @status == other.status return false unless @origin_owner_id == other.origin_owner_id return false unless @page == other.page return false unless @provider == other.provider return false unless @page_size == other.page_size true end |