Sha256: 5883005231cd00e6c0da008f38b64cd34a17efd4177b48a0904b32d9600e7d8f
Contents?: true
Size: 380 Bytes
Versions: 4
Compression:
Stored size: 380 Bytes
Contents
# frozen_string_literal: true module BrazeRuby module REST class EmailHardBounces < Base attr_reader :params def initialize(api_key, braze_url, options, **params) @params = params super api_key, braze_url, options end def perform http.get("/email/hard_bounces", { **@params }) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems