Sha256: ac2f21575c2d253634c64ac1edb86097034e7840efc86be81671a94e882edf3c
Contents?: true
Size: 576 Bytes
Versions: 3
Compression:
Stored size: 576 Bytes
Contents
# frozen_string_literal: true module BrazeRuby module Endpoints module Subscription def subscription_status_set(**payload) BrazeRuby::REST::SubscriptionStatusSet.new(api_key, braze_url, options, **payload).perform end def subscription_status_get(**payload) BrazeRuby::REST::SubscriptionStatusGet.new(api_key, braze_url, options, **payload).perform end def subscription_user_status(**payload) BrazeRuby::REST::SubscriptionUserStatus.new(api_key, braze_url, options, **payload).perform end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
braze_ruby-0.4.2 | lib/braze_ruby/endpoints/subscription.rb |
braze_ruby-0.4.1 | lib/braze_ruby/endpoints/subscription.rb |
braze_ruby-0.4.0 | lib/braze_ruby/endpoints/subscription.rb |