Class: Kombo::Models::Shared::GetAtsInterviewsPositiveResponseResult

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/kombo/models/shared/getatsinterviewspositiveresponse_result.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(id:, changed_at:, users:, remote_id: nil, title: nil, starting_at: nil, ending_at: nil, video_conferencing_url: nil, application_id: nil, stage_id: nil, canceled: nil, remote_created_at: nil, remote_updated_at: nil, remote_deleted_at: nil, application: nil, location: nil) ⇒ GetAtsInterviewsPositiveResponseResult

Returns a new instance of GetAtsInterviewsPositiveResponseResult.



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/kombo/models/shared/getatsinterviewspositiveresponse_result.rb', line 55

def initialize(id:, changed_at:, users:, remote_id: nil, title: nil, starting_at: nil, ending_at: nil, video_conferencing_url: nil, application_id: nil, stage_id: nil, canceled: nil, remote_created_at: nil, remote_updated_at: nil, remote_deleted_at: nil, application: nil, location: nil)
  @id = id
  @changed_at = changed_at
  @users = users
  @remote_id = remote_id
  @title = title
  @starting_at = starting_at
  @ending_at = ending_at
  @video_conferencing_url = video_conferencing_url
  @application_id = application_id
  @stage_id = stage_id
  @canceled = canceled
  @remote_created_at = remote_created_at
  @remote_updated_at = remote_updated_at
  @remote_deleted_at = remote_deleted_at
  @application = application
  @location = location
end

Instance Method Details

#==(other) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/kombo/models/shared/getatsinterviewspositiveresponse_result.rb', line 75

def ==(other)
  return false unless other.is_a? self.class
  return false unless @id == other.id
  return false unless @changed_at == other.changed_at
  return false unless @users == other.users
  return false unless @remote_id == other.remote_id
  return false unless @title == other.title
  return false unless @starting_at == other.starting_at
  return false unless @ending_at == other.ending_at
  return false unless @video_conferencing_url == other.video_conferencing_url
  return false unless @application_id == other.application_id
  return false unless @stage_id == other.stage_id
  return false unless @canceled == other.canceled
  return false unless @remote_created_at == other.remote_created_at
  return false unless @remote_updated_at == other.remote_updated_at
  return false unless @remote_deleted_at == other.remote_deleted_at
  return false unless @application == other.application
  return false unless @location == other.location
  true
end