Class: OpenApiSDK::Models::Shared::PartnerApplicationSubmittedEvent
- Inherits:
-
Object
- Object
- OpenApiSDK::Models::Shared::PartnerApplicationSubmittedEvent
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/open_api_sdk/models/shared/partnerapplicationsubmittedevent.rb
Overview
Triggered when a partner submits an application to join a program.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(id:, event:, created_at:, data:) ⇒ PartnerApplicationSubmittedEvent
constructor
A new instance of PartnerApplicationSubmittedEvent.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(id:, event:, created_at:, data:) ⇒ PartnerApplicationSubmittedEvent
Returns a new instance of PartnerApplicationSubmittedEvent.
25 26 27 28 29 30 |
# File 'lib/open_api_sdk/models/shared/partnerapplicationsubmittedevent.rb', line 25 def initialize(id:, event:, created_at:, data:) @id = id @event = event @created_at = created_at @data = data end |
Instance Method Details
#==(other) ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/open_api_sdk/models/shared/partnerapplicationsubmittedevent.rb', line 33 def ==(other) return false unless other.is_a? self.class return false unless @id == other.id return false unless @event == other.event return false unless @created_at == other.created_at return false unless @data == other.data true end |