We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9156d0 commit a5e6fafCopy full SHA for a5e6faf
lib/optimizely/event/entity/event_context.rb
@@ -26,14 +26,16 @@ def initialize(
26
anonymize_ip:,
27
revision:,
28
client_name:,
29
- client_version:
+ client_version:,
30
+ region:
31
)
32
@account_id = account_id
33
@project_id = project_id
34
@anonymize_ip = anonymize_ip
35
@revision = revision
36
@client_name = client_name
37
@client_version = client_version
38
+ @region = region
39
end
40
41
def as_json
@@ -43,7 +45,8 @@ def as_json
43
45
anonymize_ip: @anonymize_ip,
44
46
revision: @revision,
47
client_name: @client_name,
- client_version: @client_version
48
+ client_version: @client_version,
49
+ region: @region
50
}
51
52
0 commit comments