Class: StackOne::Models::Operations::StackoneListLogsRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(filter: nil, include: nil, next_: nil, order_by: nil, order_direction: nil, page_size: nil) ⇒ StackoneListLogsRequest

Returns a new instance of StackoneListLogsRequest.



29
30
31
32
33
34
35
36
# File 'lib/stack_one/models/operations/stackone_list_logs_request.rb', line 29

def initialize(filter: nil, include: nil, next_: nil, order_by: nil, order_direction: nil, page_size: nil)
  @filter = filter
  @include = include
  @next_ = next_
  @order_by = order_by
  @order_direction = order_direction
  @page_size = page_size
end

Instance Method Details

#==(other) ⇒ Object



39
40
41
42
43
44
45
46
47
48
# File 'lib/stack_one/models/operations/stackone_list_logs_request.rb', line 39

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