Class: StackOne::Models::Operations::StackoneListActionsMetaRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/stack_one/models/operations/stackone_list_actions_meta_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(exclude: nil, filter: nil, include: nil, next_: nil, page_size: nil, search: nil, group_by: 'connector') ⇒ StackoneListActionsMetaRequest

Returns a new instance of StackoneListActionsMetaRequest.



31
32
33
34
35
36
37
38
39
# File 'lib/stack_one/models/operations/stackone_list_actions_meta_request.rb', line 31

def initialize(exclude: nil, filter: nil, include: nil, next_: nil, page_size: nil, search: nil, group_by: 'connector')
  @exclude = exclude
  @filter = filter
  @include = include
  @next_ = next_
  @page_size = page_size
  @search = search
  @group_by = group_by
end

Instance Method Details

#==(other) ⇒ Object



42
43
44
45
46
47
48
49
50
51
52
# File 'lib/stack_one/models/operations/stackone_list_actions_meta_request.rb', line 42

def ==(other)
  return false unless other.is_a? self.class
  return false unless @exclude == other.exclude
  return false unless @filter == other.filter
  return false unless @include == other.include
  return false unless @next_ == other.next_
  return false unless @page_size == other.page_size
  return false unless @search == other.search
  return false unless @group_by == other.group_by
  true
end