Class: OpenApiSDK::Models::Operations::ListEventsRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/open_api_sdk/models/operations/listevents_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(domain: nil, key: nil, link_id: nil, external_id: nil, tenant_id: nil, tag_id: nil, folder_id: nil, group_id: nil, partner_id: nil, customer_id: nil, interval: nil, start: nil, end_: nil, country: nil, city: nil, region: nil, continent: nil, device: nil, browser: nil, os: nil, trigger: nil, referer: nil, referer_url: nil, url: nil, utm_source: nil, utm_medium: nil, utm_campaign: nil, utm_term: nil, utm_content: nil, root: nil, sale_type: nil, query: nil, program_id: nil, tag_ids: nil, qr: nil, event: Models::Operations::QueryParamEvent::CLICKS, timezone: 'UTC', page: 1.0, limit: 100.0, sort_order: Models::Operations::QueryParamSortOrder::DESC, sort_by: Models::Operations::QueryParamSortBy::TIMESTAMP, order: Models::Operations::Order::DESC) ⇒ ListEventsRequest

Returns a new instance of ListEventsRequest.



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/open_api_sdk/models/operations/listevents_request.rb', line 101

def initialize(domain: nil, key: nil, link_id: nil, external_id: nil, tenant_id: nil, tag_id: nil, folder_id: nil, group_id: nil, partner_id: nil, customer_id: nil, interval: nil, start: nil, end_: nil, country: nil, city: nil, region: nil, continent: nil, device: nil, browser: nil, os: nil, trigger: nil, referer: nil, referer_url: nil, url: nil, utm_source: nil, utm_medium: nil, utm_campaign: nil, utm_term: nil, utm_content: nil, root: nil, sale_type: nil, query: nil, program_id: nil, tag_ids: nil, qr: nil, event: Models::Operations::QueryParamEvent::CLICKS, timezone: 'UTC', page: 1.0, limit: 100.0, sort_order: Models::Operations::QueryParamSortOrder::DESC, sort_by: Models::Operations::QueryParamSortBy::TIMESTAMP, order: Models::Operations::Order::DESC)
  @domain = domain
  @key = key
  @link_id = link_id
  @external_id = external_id
  @tenant_id = tenant_id
  @tag_id = tag_id
  @folder_id = folder_id
  @group_id = group_id
  @partner_id = partner_id
  @customer_id = customer_id
  @interval = interval
  @start = start
  @end_ = end_
  @country = country
  @city = city
  @region = region
  @continent = continent
  @device = device
  @browser = browser
  @os = os
  @trigger = trigger
  @referer = referer
  @referer_url = referer_url
  @url = url
  @utm_source = utm_source
  @utm_medium = utm_medium
  @utm_campaign = utm_campaign
  @utm_term = utm_term
  @utm_content = utm_content
  @root = root
  @sale_type = sale_type
  @query = query
  @program_id = program_id
  @tag_ids = tag_ids
  @qr = qr
  @event = event
  @timezone = timezone
  @page = page
  @limit = limit
  @sort_order = sort_order
  @sort_by = sort_by
  @order = order
end

Instance Method Details

#==(other) ⇒ Object



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# File 'lib/open_api_sdk/models/operations/listevents_request.rb', line 147

def ==(other)
  return false unless other.is_a? self.class
  return false unless @domain == other.domain
  return false unless @key == other.key
  return false unless @link_id == other.link_id
  return false unless @external_id == other.external_id
  return false unless @tenant_id == other.tenant_id
  return false unless @tag_id == other.tag_id
  return false unless @folder_id == other.folder_id
  return false unless @group_id == other.group_id
  return false unless @partner_id == other.partner_id
  return false unless @customer_id == other.customer_id
  return false unless @interval == other.interval
  return false unless @start == other.start
  return false unless @end_ == other.end_
  return false unless @country == other.country
  return false unless @city == other.city
  return false unless @region == other.region
  return false unless @continent == other.continent
  return false unless @device == other.device
  return false unless @browser == other.browser
  return false unless @os == other.os
  return false unless @trigger == other.trigger
  return false unless @referer == other.referer
  return false unless @referer_url == other.referer_url
  return false unless @url == other.url
  return false unless @utm_source == other.utm_source
  return false unless @utm_medium == other.utm_medium
  return false unless @utm_campaign == other.utm_campaign
  return false unless @utm_term == other.utm_term
  return false unless @utm_content == other.utm_content
  return false unless @root == other.root
  return false unless @sale_type == other.sale_type
  return false unless @query == other.query
  return false unless @program_id == other.program_id
  return false unless @tag_ids == other.tag_ids
  return false unless @qr == other.qr
  return false unless @event == other.event
  return false unless @timezone == other.timezone
  return false unless @page == other.page
  return false unless @limit == other.limit
  return false unless @sort_order == other.sort_order
  return false unless @sort_by == other.sort_by
  return false unless @order == other.order
  true
end