dub 0.2.2.pre.alpha.11 → 0.2.2.pre.alpha.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/open_api_sdk/models/operations/deletelink_response.rb +1 -1
- data/lib/open_api_sdk/models/operations/deletelink_responsebody.rb +1 -1
- data/lib/open_api_sdk/models/operations/deletetag_request.rb +24 -0
- data/lib/open_api_sdk/models/operations/deletetag_response.rb +60 -0
- data/lib/open_api_sdk/models/operations/deletetag_responsebody.rb +24 -0
- data/lib/open_api_sdk/models/operations/listevents_request.rb +1 -1
- data/lib/open_api_sdk/models/operations/queryparam_event.rb +0 -1
- data/lib/open_api_sdk/models/operations/queryparam_interval.rb +1 -2
- data/lib/open_api_sdk/models/operations.rb +3 -0
- data/lib/open_api_sdk/models/shared/click.rb +54 -0
- data/lib/open_api_sdk/models/shared/clickevent.rb +48 -19
- data/lib/open_api_sdk/models/shared/clickevent_geo.rb +771 -0
- data/lib/open_api_sdk/models/shared/link.rb +148 -0
- data/lib/open_api_sdk/models/shared/workspaceschema.rb +2 -5
- data/lib/open_api_sdk/models/shared.rb +3 -0
- data/lib/open_api_sdk/sdkconfiguration.rb +3 -3
- data/lib/open_api_sdk/tags.rb +81 -0
- metadata +8 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 133ab97e3601383dc9aeb32d01cdd4cc08a2c2648abe3bd4b54e128b849f316b
|
|
4
|
+
data.tar.gz: cb4df287f1964a87565dda2b302c30366c0a364ce012f83d4cebf4b76844a9d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74e5b3f85d8120a649224e4b0d63c1141c53c394c71e2daced18748fac29aceaf600338e49c1412d999109428c326d76da2bff4af2c41d3a9d460bd27309ef7b
|
|
7
|
+
data.tar.gz: 501cd71b1217ff316a582bac6f237c36e4b56aa178c0471111b56e612fe2795526abec43dc15abe60e35eb1a730b9e952b8a880a491d839054a93c48cc1ce240
|
|
@@ -29,7 +29,7 @@ module OpenApiSDK
|
|
|
29
29
|
field :invite_expired, T.nilable(::OpenApiSDK::Shared::InviteExpired)
|
|
30
30
|
# The server cannot find the requested resource.
|
|
31
31
|
field :not_found, T.nilable(::OpenApiSDK::Shared::NotFound)
|
|
32
|
-
# The deleted link
|
|
32
|
+
# The deleted link ID.
|
|
33
33
|
field :object, T.nilable(::OpenApiSDK::Operations::DeleteLinkResponseBody)
|
|
34
34
|
# The user has sent too many requests in a given amount of time ("rate limiting")
|
|
35
35
|
field :rate_limit_exceeded, T.nilable(::OpenApiSDK::Shared::RateLimitExceeded)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module OpenApiSDK
|
|
8
|
+
module Operations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class DeleteTagRequest < ::OpenApiSDK::Utils::FieldAugmented
|
|
12
|
+
extend T::Sig
|
|
13
|
+
|
|
14
|
+
# The ID of the tag to delete.
|
|
15
|
+
field :id, ::String, { 'path_param': { 'field_name': 'id', 'style': 'simple', 'explode': false } }
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
sig { params(id: ::String).void }
|
|
19
|
+
def initialize(id: nil)
|
|
20
|
+
@id = id
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module OpenApiSDK
|
|
8
|
+
module Operations
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class DeleteTagResponse < ::OpenApiSDK::Utils::FieldAugmented
|
|
12
|
+
extend T::Sig
|
|
13
|
+
|
|
14
|
+
# HTTP response content type for this operation
|
|
15
|
+
field :content_type, ::String
|
|
16
|
+
# Raw HTTP response; suitable for custom response parsing
|
|
17
|
+
field :raw_response, ::Faraday::Response
|
|
18
|
+
# HTTP response status code for this operation
|
|
19
|
+
field :status_code, ::Integer
|
|
20
|
+
# The server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
|
|
21
|
+
field :bad_request, T.nilable(::OpenApiSDK::Shared::BadRequest)
|
|
22
|
+
# This response is sent when a request conflicts with the current state of the server.
|
|
23
|
+
field :conflict, T.nilable(::OpenApiSDK::Shared::Conflict)
|
|
24
|
+
# The client does not have access rights to the content; that is, it is unauthorized, so the server is refusing to give the requested resource. Unlike 401 Unauthorized, the client's identity is known to the server.
|
|
25
|
+
field :forbidden, T.nilable(::OpenApiSDK::Shared::Forbidden)
|
|
26
|
+
# The server has encountered a situation it does not know how to handle.
|
|
27
|
+
field :internal_server_error, T.nilable(::OpenApiSDK::Shared::InternalServerError)
|
|
28
|
+
# This response is sent when the requested content has been permanently deleted from server, with no forwarding address.
|
|
29
|
+
field :invite_expired, T.nilable(::OpenApiSDK::Shared::InviteExpired)
|
|
30
|
+
# The server cannot find the requested resource.
|
|
31
|
+
field :not_found, T.nilable(::OpenApiSDK::Shared::NotFound)
|
|
32
|
+
# The deleted tag ID.
|
|
33
|
+
field :object, T.nilable(::OpenApiSDK::Operations::DeleteTagResponseBody)
|
|
34
|
+
# The user has sent too many requests in a given amount of time ("rate limiting")
|
|
35
|
+
field :rate_limit_exceeded, T.nilable(::OpenApiSDK::Shared::RateLimitExceeded)
|
|
36
|
+
# Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated". That is, the client must authenticate itself to get the requested response.
|
|
37
|
+
field :unauthorized, T.nilable(::OpenApiSDK::Shared::Unauthorized)
|
|
38
|
+
# The request was well-formed but was unable to be followed due to semantic errors.
|
|
39
|
+
field :unprocessable_entity, T.nilable(::OpenApiSDK::Shared::UnprocessableEntity)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
sig { params(content_type: ::String, raw_response: ::Faraday::Response, status_code: ::Integer, bad_request: T.nilable(::OpenApiSDK::Shared::BadRequest), conflict: T.nilable(::OpenApiSDK::Shared::Conflict), forbidden: T.nilable(::OpenApiSDK::Shared::Forbidden), internal_server_error: T.nilable(::OpenApiSDK::Shared::InternalServerError), invite_expired: T.nilable(::OpenApiSDK::Shared::InviteExpired), not_found: T.nilable(::OpenApiSDK::Shared::NotFound), object: T.nilable(::OpenApiSDK::Operations::DeleteTagResponseBody), rate_limit_exceeded: T.nilable(::OpenApiSDK::Shared::RateLimitExceeded), unauthorized: T.nilable(::OpenApiSDK::Shared::Unauthorized), unprocessable_entity: T.nilable(::OpenApiSDK::Shared::UnprocessableEntity)).void }
|
|
43
|
+
def initialize(content_type: nil, raw_response: nil, status_code: nil, bad_request: nil, conflict: nil, forbidden: nil, internal_server_error: nil, invite_expired: nil, not_found: nil, object: nil, rate_limit_exceeded: nil, unauthorized: nil, unprocessable_entity: nil)
|
|
44
|
+
@content_type = content_type
|
|
45
|
+
@raw_response = raw_response
|
|
46
|
+
@status_code = status_code
|
|
47
|
+
@bad_request = bad_request
|
|
48
|
+
@conflict = conflict
|
|
49
|
+
@forbidden = forbidden
|
|
50
|
+
@internal_server_error = internal_server_error
|
|
51
|
+
@invite_expired = invite_expired
|
|
52
|
+
@not_found = not_found
|
|
53
|
+
@object = object
|
|
54
|
+
@rate_limit_exceeded = rate_limit_exceeded
|
|
55
|
+
@unauthorized = unauthorized
|
|
56
|
+
@unprocessable_entity = unprocessable_entity
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module OpenApiSDK
|
|
8
|
+
module Operations
|
|
9
|
+
|
|
10
|
+
# The deleted tag ID.
|
|
11
|
+
class DeleteTagResponseBody < ::OpenApiSDK::Utils::FieldAugmented
|
|
12
|
+
extend T::Sig
|
|
13
|
+
|
|
14
|
+
# The ID of the deleted tag.
|
|
15
|
+
field :id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('id') } }
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
sig { params(id: ::String).void }
|
|
19
|
+
def initialize(id: nil)
|
|
20
|
+
@id = id
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
@@ -29,7 +29,7 @@ module OpenApiSDK
|
|
|
29
29
|
field :event, T.nilable(::OpenApiSDK::Operations::QueryParamEvent), { 'query_param': { 'field_name': 'event', 'style': 'form', 'explode': true } }
|
|
30
30
|
# This is the ID of the link in the your database. Must be prefixed with 'ext_' when passed as a query parameter.
|
|
31
31
|
field :external_id, T.nilable(::String), { 'query_param': { 'field_name': 'externalId', 'style': 'form', 'explode': true } }
|
|
32
|
-
# The interval to retrieve
|
|
32
|
+
# The interval to retrieve events for. Takes precedence over start and end. If undefined, defaults to 24h.
|
|
33
33
|
field :interval, T.nilable(::OpenApiSDK::Operations::QueryParamInterval), { 'query_param': { 'field_name': 'interval', 'style': 'form', 'explode': true } }
|
|
34
34
|
# The short link slug.
|
|
35
35
|
field :key, T.nilable(::String), { 'query_param': { 'field_name': 'key', 'style': 'form', 'explode': true } }
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
module OpenApiSDK
|
|
8
8
|
module Operations
|
|
9
9
|
|
|
10
|
-
# QueryParamInterval - The interval to retrieve
|
|
10
|
+
# QueryParamInterval - The interval to retrieve events for. Takes precedence over start and end. If undefined, defaults to 24h.
|
|
11
11
|
class QueryParamInterval < T::Enum
|
|
12
12
|
enums do
|
|
13
13
|
TWENTY_FOURH = new('24h')
|
|
@@ -17,7 +17,6 @@ module OpenApiSDK
|
|
|
17
17
|
YTD = new('ytd')
|
|
18
18
|
ONEY = new('1y')
|
|
19
19
|
ALL = new('all')
|
|
20
|
-
ALL_UNFILTERED = new('all_unfiltered')
|
|
21
20
|
end
|
|
22
21
|
end
|
|
23
22
|
end
|
|
@@ -53,6 +53,9 @@ module OpenApiSDK
|
|
|
53
53
|
autoload :Color, 'open_api_sdk/models/operations/color.rb'
|
|
54
54
|
autoload :CreateTagRequestBody, 'open_api_sdk/models/operations/createtag_requestbody.rb'
|
|
55
55
|
autoload :CreateTagResponse, 'open_api_sdk/models/operations/createtag_response.rb'
|
|
56
|
+
autoload :DeleteTagRequest, 'open_api_sdk/models/operations/deletetag_request.rb'
|
|
57
|
+
autoload :DeleteTagResponseBody, 'open_api_sdk/models/operations/deletetag_responsebody.rb'
|
|
58
|
+
autoload :DeleteTagResponse, 'open_api_sdk/models/operations/deletetag_response.rb'
|
|
56
59
|
autoload :UpdateTagColor, 'open_api_sdk/models/operations/updatetag_color.rb'
|
|
57
60
|
autoload :UpdateTagRequestBody, 'open_api_sdk/models/operations/updatetag_requestbody.rb'
|
|
58
61
|
autoload :UpdateTagRequest, 'open_api_sdk/models/operations/updatetag_request.rb'
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
# typed: true
|
|
4
|
+
# frozen_string_literal: true
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
module OpenApiSDK
|
|
8
|
+
module Shared
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Click < ::OpenApiSDK::Utils::FieldAugmented
|
|
12
|
+
extend T::Sig
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
field :browser, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('browser') } }
|
|
16
|
+
|
|
17
|
+
field :city, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('city') } }
|
|
18
|
+
|
|
19
|
+
field :continent, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('continent') } }
|
|
20
|
+
|
|
21
|
+
field :country, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('country') } }
|
|
22
|
+
|
|
23
|
+
field :device, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('device') } }
|
|
24
|
+
|
|
25
|
+
field :id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('id') } }
|
|
26
|
+
|
|
27
|
+
field :ip, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('ip') } }
|
|
28
|
+
|
|
29
|
+
field :os, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('os') } }
|
|
30
|
+
|
|
31
|
+
field :referer, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('referer') } }
|
|
32
|
+
|
|
33
|
+
field :url, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('url') } }
|
|
34
|
+
|
|
35
|
+
field :qr, T.nilable(T::Boolean), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('qr') } }
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
sig { params(browser: ::String, city: ::String, continent: ::String, country: ::String, device: ::String, id: ::String, ip: ::String, os: ::String, referer: ::String, url: ::String, qr: T.nilable(T::Boolean)).void }
|
|
39
|
+
def initialize(browser: nil, city: nil, continent: nil, country: nil, device: nil, id: nil, ip: nil, os: nil, referer: nil, url: nil, qr: nil)
|
|
40
|
+
@browser = browser
|
|
41
|
+
@city = city
|
|
42
|
+
@continent = continent
|
|
43
|
+
@country = country
|
|
44
|
+
@device = device
|
|
45
|
+
@id = id
|
|
46
|
+
@ip = ip
|
|
47
|
+
@os = os
|
|
48
|
+
@referer = referer
|
|
49
|
+
@url = url
|
|
50
|
+
@qr = qr
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
|
@@ -11,44 +11,73 @@ module OpenApiSDK
|
|
|
11
11
|
class ClickEvent < ::OpenApiSDK::Utils::FieldAugmented
|
|
12
12
|
extend T::Sig
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
# Deprecated. Use `click.browser` instead.
|
|
15
|
+
#
|
|
16
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
15
17
|
field :browser, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('browser') } }
|
|
16
|
-
|
|
18
|
+
# Deprecated. Use `click.city` instead.
|
|
19
|
+
#
|
|
20
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
17
21
|
field :city, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('city') } }
|
|
18
22
|
|
|
23
|
+
field :click, ::OpenApiSDK::Shared::Click, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('click') } }
|
|
24
|
+
# Deprecated. Use `click.id` instead.
|
|
25
|
+
#
|
|
26
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
19
27
|
field :click_id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('click_id') } }
|
|
20
|
-
|
|
28
|
+
# Deprecated. Use `click.continent` instead.
|
|
29
|
+
#
|
|
30
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
21
31
|
field :continent, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('continent') } }
|
|
22
|
-
|
|
32
|
+
# Deprecated. Use `click.country` instead.
|
|
33
|
+
#
|
|
34
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
23
35
|
field :country, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('country') } }
|
|
24
|
-
|
|
36
|
+
# Deprecated. Use `click.device` instead.
|
|
37
|
+
#
|
|
38
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
25
39
|
field :device, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('device') } }
|
|
26
|
-
|
|
40
|
+
# Deprecated. Use `link.domain` instead.
|
|
41
|
+
#
|
|
42
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
27
43
|
field :domain, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('domain') } }
|
|
28
44
|
|
|
29
45
|
field :event, ::OpenApiSDK::Shared::Event, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('event'), 'decoder': Utils.enum_from_string(::OpenApiSDK::Shared::Event, false) } }
|
|
30
|
-
|
|
46
|
+
# Deprecated. Use `click.ip` instead.
|
|
47
|
+
#
|
|
48
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
31
49
|
field :ip, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('ip') } }
|
|
32
|
-
|
|
50
|
+
# Deprecated. Use `link.key` instead.
|
|
51
|
+
#
|
|
52
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
33
53
|
field :key, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('key') } }
|
|
34
54
|
|
|
55
|
+
field :link, ::OpenApiSDK::Shared::Link, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('link') } }
|
|
56
|
+
# Deprecated. Use `link.id` instead.
|
|
57
|
+
#
|
|
58
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
35
59
|
field :link_id, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('link_id') } }
|
|
36
|
-
|
|
60
|
+
# Deprecated. Use `click.os` instead.
|
|
61
|
+
#
|
|
62
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
37
63
|
field :os, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('os') } }
|
|
38
|
-
|
|
64
|
+
# Deprecated. Use `click.qr` instead.
|
|
65
|
+
#
|
|
66
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
39
67
|
field :qr, ::Float, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('qr') } }
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
field :timestamp, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('timestamp') } }
|
|
44
|
-
|
|
68
|
+
# Deprecated. Use `click.url` instead.
|
|
69
|
+
#
|
|
70
|
+
# @deprecated true: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
45
71
|
field :url, ::String, { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('url') } }
|
|
46
72
|
|
|
73
|
+
field :timestamp, T.nilable(::String), { 'format_json': { 'letter_case': ::OpenApiSDK::Utils.field_name('timestamp') } }
|
|
74
|
+
|
|
47
75
|
|
|
48
|
-
sig { params(browser: ::String, city: ::String, click_id: ::String, continent: ::String, country: ::String, device: ::String, domain: ::String, event: ::OpenApiSDK::Shared::Event, ip: ::String, key: ::String, link_id: ::String, os: ::String, qr: ::Float,
|
|
49
|
-
def initialize(browser: nil, city: nil, click_id: nil, continent: nil, country: nil, device: nil, domain: nil, event: nil, ip: nil, key: nil,
|
|
76
|
+
sig { params(browser: ::String, city: ::String, click: ::OpenApiSDK::Shared::Click, click_id: ::String, continent: ::String, country: ::String, device: ::String, domain: ::String, event: ::OpenApiSDK::Shared::Event, ip: ::String, key: ::String, link: ::OpenApiSDK::Shared::Link, link_id: ::String, os: ::String, qr: ::Float, url: ::String, timestamp: T.nilable(::String)).void }
|
|
77
|
+
def initialize(browser: nil, city: nil, click: nil, click_id: nil, continent: nil, country: nil, device: nil, domain: nil, event: nil, ip: nil, key: nil, link: nil, link_id: nil, os: nil, qr: nil, url: nil, timestamp: nil)
|
|
50
78
|
@browser = browser
|
|
51
79
|
@city = city
|
|
80
|
+
@click = click
|
|
52
81
|
@click_id = click_id
|
|
53
82
|
@continent = continent
|
|
54
83
|
@country = country
|
|
@@ -57,12 +86,12 @@ module OpenApiSDK
|
|
|
57
86
|
@event = event
|
|
58
87
|
@ip = ip
|
|
59
88
|
@key = key
|
|
89
|
+
@link = link
|
|
60
90
|
@link_id = link_id
|
|
61
91
|
@os = os
|
|
62
92
|
@qr = qr
|
|
63
|
-
@referer = referer
|
|
64
|
-
@timestamp = timestamp
|
|
65
93
|
@url = url
|
|
94
|
+
@timestamp = timestamp
|
|
66
95
|
end
|
|
67
96
|
end
|
|
68
97
|
end
|