Class: Kombo::Models::Shared::AssessmentOrderReceivedWebhookPayloadData
- Inherits:
-
Object
- Object
- Kombo::Models::Shared::AssessmentOrderReceivedWebhookPayloadData
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/shared/assessmentorderreceivedwebhookpayload_data.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(id:, package_id:, status:, integration_id:, candidate:, application:, job:) ⇒ AssessmentOrderReceivedWebhookPayloadData
constructor
A new instance of AssessmentOrderReceivedWebhookPayloadData.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(id:, package_id:, status:, integration_id:, candidate:, application:, job:) ⇒ AssessmentOrderReceivedWebhookPayloadData
Returns a new instance of AssessmentOrderReceivedWebhookPayloadData.
31 32 33 34 35 36 37 38 39 |
# File 'lib/kombo/models/shared/assessmentorderreceivedwebhookpayload_data.rb', line 31 def initialize(id:, package_id:, status:, integration_id:, candidate:, application:, job:) @id = id @package_id = package_id @status = status @integration_id = integration_id @candidate = candidate @application = application @job = job end |
Instance Method Details
#==(other) ⇒ Object
42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/kombo/models/shared/assessmentorderreceivedwebhookpayload_data.rb', line 42 def ==(other) return false unless other.is_a? self.class return false unless @id == other.id return false unless @package_id == other.package_id return false unless @status == other.status return false unless @integration_id == other.integration_id return false unless @candidate == other.candidate return false unless @application == other.application return false unless @job == other.job true end |