cartodb-4.42/lib/carto/tracking/formats/hubspot.rb
2024-04-06 05:25:13 +00:00

16 lines
245 B
Ruby

module Carto
module Tracking
module Formats
class Hubspot
def initialize(email: nil)
@email = email
end
def to_hash
@email ? { email: @email } : {}
end
end
end
end
end