Class: StackOne::Models::Operations::AtsListJobsRequest

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

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(x_account_id:, prefer: nil, expand: nil, fields_: nil, filter: nil, include: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, sync_token: nil, updated_after: nil) ⇒ AtsListJobsRequest

Returns a new instance of AtsListJobsRequest.



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/stack_one/models/operations/ats_list_jobs_request.rb', line 49

def initialize(x_account_id:, prefer: nil, expand: nil, fields_: nil, filter: nil, include: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, sync_token: nil, updated_after: nil)
  @x_account_id = 
  @prefer = prefer
  @expand = expand
  @fields_ = fields_
  @filter = filter
  @include = include
  @next_ = next_
  @page = page
  @page_size = page_size
  @proxy = proxy
  @raw = raw
  @sync_token = sync_token
  @updated_after = updated_after
end

Instance Method Details

#==(other) ⇒ Object



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/stack_one/models/operations/ats_list_jobs_request.rb', line 66

def ==(other)
  return false unless other.is_a? self.class
  return false unless @x_account_id == other.
  return false unless @prefer == other.prefer
  return false unless @expand == other.expand
  return false unless @fields_ == other.fields_
  return false unless @filter == other.filter
  return false unless @include == other.include
  return false unless @next_ == other.next_
  return false unless @page == other.page
  return false unless @page_size == other.page_size
  return false unless @proxy == other.proxy
  return false unless @raw == other.raw
  return false unless @sync_token == other.sync_token
  return false unless @updated_after == other.updated_after
  true
end