Class: OpenApiSDK::Models::Operations::TrackLeadResponseBody
- Inherits:
-
Object
- Object
- OpenApiSDK::Models::Operations::TrackLeadResponseBody
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/open_api_sdk/models/operations/tracklead_responsebody.rb
Overview
A lead was tracked.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(click:, customer:, link: nil) ⇒ TrackLeadResponseBody
constructor
A new instance of TrackLeadResponseBody.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(click:, customer:, link: nil) ⇒ TrackLeadResponseBody
Returns a new instance of TrackLeadResponseBody.
23 24 25 26 27 |
# File 'lib/open_api_sdk/models/operations/tracklead_responsebody.rb', line 23 def initialize(click:, customer:, link: nil) @click = click @customer = customer @link = link end |
Instance Method Details
#==(other) ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/open_api_sdk/models/operations/tracklead_responsebody.rb', line 30 def ==(other) return false unless other.is_a? self.class return false unless @click == other.click return false unless @customer == other.customer return false unless @link == other.link true end |