Module: BrazeClient
- Defined in:
- lib/braze_api_client/version.rb,
lib/braze_api_client.rb,
lib/braze_api_client/api_error.rb,
lib/braze_api_client/api_client.rb,
lib/braze_api_client/api/rest_api.rb,
lib/braze_api_client/models/event.rb,
lib/braze_api_client/configuration.rb,
lib/braze_api_client/models/attributes.rb,
lib/braze_api_client/models/identifier.rb,
lib/braze_api_client/models/events_array.rb,
lib/braze_api_client/models/general_error.rb,
lib/braze_api_client/models/attributes_array.rb,
lib/braze_api_client/models/identifier_one_of.rb,
lib/braze_api_client/models/attributes_twitter.rb,
lib/braze_api_client/models/identifier_one_of1.rb,
lib/braze_api_client/models/identifier_one_of2.rb,
lib/braze_api_client/models/attributes_facebook.rb,
lib/braze_api_client/models/users_track_request.rb,
lib/braze_api_client/models/users_track_response.rb,
lib/braze_api_client/models/attributes_push_tokens.rb,
lib/braze_api_client/models/attributes_current_location.rb
Overview
#Braze
#Track users, send messages, export data, and more
The version of the OpenAPI document: 0.1.0
Generated by: openapi-generator.tech OpenAPI Generator version: 5.2.1
Defined Under Namespace
Modules: Identifier Classes: ApiClient, ApiError, Attributes, AttributesArray, AttributesCurrentLocation, AttributesFacebook, AttributesPushTokens, AttributesTwitter, Configuration, Event, EventsArray, GeneralError, IdentifierOneOf, IdentifierOneOf1, IdentifierOneOf2, RestApi, UsersTrackRequest, UsersTrackResponse
Constant Summary collapse
- VERSION =
'0.1.0'
Class Method Summary collapse
-
.configure ⇒ Object
Customize default settings for the SDK using block.
Class Method Details
.configure ⇒ Object
Customize default settings for the SDK using block.
BrazeClient.configure do |config|
config.username = "xxx"
config.password = "xxx"
end
If no block given, return the default Configuration object.
47 48 49 50 51 52 53 |
# File 'lib/braze_api_client.rb', line 47 def configure if block_given? yield(Configuration.default) else Configuration.default end end |