trophy_api_client 1.9.1 → 1.10.0
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/gemconfig.rb +1 -1
- data/lib/trophy_api_client/leaderboards/types/leaderboards_all_response_item.rb +4 -4
- data/lib/trophy_api_client/types/admin_leaderboard.rb +4 -4
- data/lib/trophy_api_client/types/leaderboard_response.rb +4 -4
- data/lib/trophy_api_client/types/leaderboard_response_with_rankings.rb +4 -4
- data/lib/trophy_api_client/types/metric_event_leaderboard_response.rb +4 -4
- data/lib/trophy_api_client/types/user_leaderboard_response.rb +4 -4
- data/lib/trophy_api_client/types/user_leaderboard_response_with_history.rb +4 -4
- data/lib/trophy_api_client/types/webhook_user_leaderboard_response.rb +4 -4
- data/lib/trophy_api_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5cdaf3a518aec65ea9ac8a42cca90ad82ce2f3883499544dd997a6c7537191b1
|
|
4
|
+
data.tar.gz: 5ce1d3525b1f2b512aef8d4f6e9978af1a873278e91eec1b01e1cc71a8b76528
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc32ea029c845b7a474ccae57aa445bb92d6878cc676f87fce0dd8909258490cc47eb2fea9d6f3bb0b09703018a8fa9ffb7a4075922ded2d015146008ca38772
|
|
7
|
+
data.tar.gz: 044214ba0e7b581eecfc9534289e41d594dc445abde62ef3de33290206296f5c667491869a5fec27c86f4d9c5fa2f3c8982038b4cdedb22450989f2cc3ef2a37
|
data/lib/gemconfig.rb
CHANGED
|
@@ -76,8 +76,8 @@ module TrophyApiClient
|
|
|
76
76
|
# type. Null for one-time leaderboards.
|
|
77
77
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
|
78
78
|
# @return [TrophyApiClient::Leaderboards::LeaderboardsAllResponseItem]
|
|
79
|
-
def initialize(status:, id:, name:, key:, rank_by:, breakdown_attributes:, start:,
|
|
80
|
-
metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
79
|
+
def initialize(status:, id:, name:, key:, rank_by:, breakdown_attributes:, start:, breakdown_attribute: OMIT,
|
|
80
|
+
metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, max_participants: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
81
81
|
@status = status
|
|
82
82
|
@id = id
|
|
83
83
|
@name = name
|
|
@@ -92,7 +92,7 @@ module TrophyApiClient
|
|
|
92
92
|
@description = description if description != OMIT
|
|
93
93
|
@start = start
|
|
94
94
|
@end_ = end_ if end_ != OMIT
|
|
95
|
-
@max_participants = max_participants
|
|
95
|
+
@max_participants = max_participants if max_participants != OMIT
|
|
96
96
|
@run_unit = run_unit if run_unit != OMIT
|
|
97
97
|
@run_interval = run_interval if run_interval != OMIT
|
|
98
98
|
@additional_properties = additional_properties
|
|
@@ -193,7 +193,7 @@ module TrophyApiClient
|
|
|
193
193
|
obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.")
|
|
194
194
|
obj.start.is_a?(String) != false || raise("Passed value for field obj.start is not the expected type, validation failed.")
|
|
195
195
|
obj.end_&.is_a?(String) != false || raise("Passed value for field obj.end_ is not the expected type, validation failed.")
|
|
196
|
-
obj.max_participants
|
|
196
|
+
obj.max_participants&.is_a?(Integer) != false || raise("Passed value for field obj.max_participants is not the expected type, validation failed.")
|
|
197
197
|
obj.run_unit&.is_a?(TrophyApiClient::LeaderboardResponseRunUnit) != false || raise("Passed value for field obj.run_unit is not the expected type, validation failed.")
|
|
198
198
|
obj.run_interval&.is_a?(Integer) != false || raise("Passed value for field obj.run_interval is not the expected type, validation failed.")
|
|
199
199
|
end
|
|
@@ -61,8 +61,8 @@ module TrophyApiClient
|
|
|
61
61
|
# @param run_interval [Integer] The number of recurrence units between leaderboard runs.
|
|
62
62
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
|
63
63
|
# @return [TrophyApiClient::AdminLeaderboard]
|
|
64
|
-
def initialize(id:, name:, key:, status:, rank_by:,
|
|
65
|
-
|
|
64
|
+
def initialize(id:, name:, key:, status:, rank_by:, start:, breakdown_attributes:, description: OMIT, metric_id: OMIT, points_system_id: OMIT,
|
|
65
|
+
max_participants: OMIT, end_: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
66
66
|
@id = id
|
|
67
67
|
@name = name
|
|
68
68
|
@key = key
|
|
@@ -71,7 +71,7 @@ module TrophyApiClient
|
|
|
71
71
|
@rank_by = rank_by
|
|
72
72
|
@metric_id = metric_id if metric_id != OMIT
|
|
73
73
|
@points_system_id = points_system_id if points_system_id != OMIT
|
|
74
|
-
@max_participants = max_participants
|
|
74
|
+
@max_participants = max_participants if max_participants != OMIT
|
|
75
75
|
@start = start
|
|
76
76
|
@end_ = end_ if end_ != OMIT
|
|
77
77
|
@breakdown_attributes = breakdown_attributes
|
|
@@ -160,7 +160,7 @@ module TrophyApiClient
|
|
|
160
160
|
obj.rank_by.is_a?(TrophyApiClient::AdminLeaderboardRankBy) != false || raise("Passed value for field obj.rank_by is not the expected type, validation failed.")
|
|
161
161
|
obj.metric_id&.is_a?(String) != false || raise("Passed value for field obj.metric_id is not the expected type, validation failed.")
|
|
162
162
|
obj.points_system_id&.is_a?(String) != false || raise("Passed value for field obj.points_system_id is not the expected type, validation failed.")
|
|
163
|
-
obj.max_participants
|
|
163
|
+
obj.max_participants&.is_a?(Integer) != false || raise("Passed value for field obj.max_participants is not the expected type, validation failed.")
|
|
164
164
|
obj.start.is_a?(String) != false || raise("Passed value for field obj.start is not the expected type, validation failed.")
|
|
165
165
|
obj.end_&.is_a?(String) != false || raise("Passed value for field obj.end_ is not the expected type, validation failed.")
|
|
166
166
|
obj.breakdown_attributes.is_a?(Array) != false || raise("Passed value for field obj.breakdown_attributes is not the expected type, validation failed.")
|
|
@@ -72,8 +72,8 @@ module TrophyApiClient
|
|
|
72
72
|
# type. Null for one-time leaderboards.
|
|
73
73
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
|
74
74
|
# @return [TrophyApiClient::LeaderboardResponse]
|
|
75
|
-
def initialize(id:, name:, key:, rank_by:, breakdown_attributes:, start:,
|
|
76
|
-
metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
75
|
+
def initialize(id:, name:, key:, rank_by:, breakdown_attributes:, start:, breakdown_attribute: OMIT, metric_key: OMIT,
|
|
76
|
+
metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, max_participants: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
77
77
|
@id = id
|
|
78
78
|
@name = name
|
|
79
79
|
@key = key
|
|
@@ -87,7 +87,7 @@ module TrophyApiClient
|
|
|
87
87
|
@description = description if description != OMIT
|
|
88
88
|
@start = start
|
|
89
89
|
@end_ = end_ if end_ != OMIT
|
|
90
|
-
@max_participants = max_participants
|
|
90
|
+
@max_participants = max_participants if max_participants != OMIT
|
|
91
91
|
@run_unit = run_unit if run_unit != OMIT
|
|
92
92
|
@run_interval = run_interval if run_interval != OMIT
|
|
93
93
|
@additional_properties = additional_properties
|
|
@@ -184,7 +184,7 @@ module TrophyApiClient
|
|
|
184
184
|
obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.")
|
|
185
185
|
obj.start.is_a?(String) != false || raise("Passed value for field obj.start is not the expected type, validation failed.")
|
|
186
186
|
obj.end_&.is_a?(String) != false || raise("Passed value for field obj.end_ is not the expected type, validation failed.")
|
|
187
|
-
obj.max_participants
|
|
187
|
+
obj.max_participants&.is_a?(Integer) != false || raise("Passed value for field obj.max_participants is not the expected type, validation failed.")
|
|
188
188
|
obj.run_unit&.is_a?(TrophyApiClient::LeaderboardResponseRunUnit) != false || raise("Passed value for field obj.run_unit is not the expected type, validation failed.")
|
|
189
189
|
obj.run_interval&.is_a?(Integer) != false || raise("Passed value for field obj.run_interval is not the expected type, validation failed.")
|
|
190
190
|
end
|
|
@@ -79,8 +79,8 @@ module TrophyApiClient
|
|
|
79
79
|
# type. Null for one-time leaderboards.
|
|
80
80
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
|
81
81
|
# @return [TrophyApiClient::LeaderboardResponseWithRankings]
|
|
82
|
-
def initialize(status:, rankings:, id:, name:, key:, rank_by:, breakdown_attributes:, start:,
|
|
83
|
-
metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
82
|
+
def initialize(status:, rankings:, id:, name:, key:, rank_by:, breakdown_attributes:, start:, breakdown_attribute: OMIT,
|
|
83
|
+
metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, max_participants: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
84
84
|
@status = status
|
|
85
85
|
@rankings = rankings
|
|
86
86
|
@id = id
|
|
@@ -96,7 +96,7 @@ module TrophyApiClient
|
|
|
96
96
|
@description = description if description != OMIT
|
|
97
97
|
@start = start
|
|
98
98
|
@end_ = end_ if end_ != OMIT
|
|
99
|
-
@max_participants = max_participants
|
|
99
|
+
@max_participants = max_participants if max_participants != OMIT
|
|
100
100
|
@run_unit = run_unit if run_unit != OMIT
|
|
101
101
|
@run_interval = run_interval if run_interval != OMIT
|
|
102
102
|
@additional_properties = additional_properties
|
|
@@ -204,7 +204,7 @@ module TrophyApiClient
|
|
|
204
204
|
obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.")
|
|
205
205
|
obj.start.is_a?(String) != false || raise("Passed value for field obj.start is not the expected type, validation failed.")
|
|
206
206
|
obj.end_&.is_a?(String) != false || raise("Passed value for field obj.end_ is not the expected type, validation failed.")
|
|
207
|
-
obj.max_participants
|
|
207
|
+
obj.max_participants&.is_a?(Integer) != false || raise("Passed value for field obj.max_participants is not the expected type, validation failed.")
|
|
208
208
|
obj.run_unit&.is_a?(TrophyApiClient::LeaderboardResponseRunUnit) != false || raise("Passed value for field obj.run_unit is not the expected type, validation failed.")
|
|
209
209
|
obj.run_interval&.is_a?(Integer) != false || raise("Passed value for field obj.run_interval is not the expected type, validation failed.")
|
|
210
210
|
end
|
|
@@ -97,8 +97,8 @@ module TrophyApiClient
|
|
|
97
97
|
# type. Null for one-time leaderboards.
|
|
98
98
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
|
99
99
|
# @return [TrophyApiClient::MetricEventLeaderboardResponse]
|
|
100
|
-
def initialize(threshold:, id:, name:, key:, rank_by:, breakdown_attributes:, start:,
|
|
101
|
-
breakdown_attribute_values: OMIT, breakdown_attribute: OMIT, metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
100
|
+
def initialize(threshold:, id:, name:, key:, rank_by:, breakdown_attributes:, start:, end_: OMIT, rank: OMIT, previous_rank: OMIT, breakdown_attribute_value: OMIT,
|
|
101
|
+
breakdown_attribute_values: OMIT, breakdown_attribute: OMIT, metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, max_participants: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
102
102
|
@end_ = end_ if end_ != OMIT
|
|
103
103
|
@rank = rank if rank != OMIT
|
|
104
104
|
@previous_rank = previous_rank if previous_rank != OMIT
|
|
@@ -117,7 +117,7 @@ module TrophyApiClient
|
|
|
117
117
|
@points_system_name = points_system_name if points_system_name != OMIT
|
|
118
118
|
@description = description if description != OMIT
|
|
119
119
|
@start = start
|
|
120
|
-
@max_participants = max_participants
|
|
120
|
+
@max_participants = max_participants if max_participants != OMIT
|
|
121
121
|
@run_unit = run_unit if run_unit != OMIT
|
|
122
122
|
@run_interval = run_interval if run_interval != OMIT
|
|
123
123
|
@additional_properties = additional_properties
|
|
@@ -237,7 +237,7 @@ module TrophyApiClient
|
|
|
237
237
|
obj.points_system_name&.is_a?(String) != false || raise("Passed value for field obj.points_system_name is not the expected type, validation failed.")
|
|
238
238
|
obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.")
|
|
239
239
|
obj.start.is_a?(String) != false || raise("Passed value for field obj.start is not the expected type, validation failed.")
|
|
240
|
-
obj.max_participants
|
|
240
|
+
obj.max_participants&.is_a?(Integer) != false || raise("Passed value for field obj.max_participants is not the expected type, validation failed.")
|
|
241
241
|
obj.run_unit&.is_a?(TrophyApiClient::LeaderboardResponseRunUnit) != false || raise("Passed value for field obj.run_unit is not the expected type, validation failed.")
|
|
242
242
|
obj.run_interval&.is_a?(Integer) != false || raise("Passed value for field obj.run_interval is not the expected type, validation failed.")
|
|
243
243
|
end
|
|
@@ -82,8 +82,8 @@ module TrophyApiClient
|
|
|
82
82
|
# type. Null for one-time leaderboards.
|
|
83
83
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
|
84
84
|
# @return [TrophyApiClient::UserLeaderboardResponse]
|
|
85
|
-
def initialize(id:, name:, key:, rank_by:, breakdown_attributes:, start:,
|
|
86
|
-
|
|
85
|
+
def initialize(id:, name:, key:, rank_by:, breakdown_attributes:, start:, rank: OMIT, value: OMIT,
|
|
86
|
+
breakdown_attribute: OMIT, metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, max_participants: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
87
87
|
@rank = rank if rank != OMIT
|
|
88
88
|
@value = value if value != OMIT
|
|
89
89
|
@id = id
|
|
@@ -99,7 +99,7 @@ module TrophyApiClient
|
|
|
99
99
|
@description = description if description != OMIT
|
|
100
100
|
@start = start
|
|
101
101
|
@end_ = end_ if end_ != OMIT
|
|
102
|
-
@max_participants = max_participants
|
|
102
|
+
@max_participants = max_participants if max_participants != OMIT
|
|
103
103
|
@run_unit = run_unit if run_unit != OMIT
|
|
104
104
|
@run_interval = run_interval if run_interval != OMIT
|
|
105
105
|
@additional_properties = additional_properties
|
|
@@ -204,7 +204,7 @@ module TrophyApiClient
|
|
|
204
204
|
obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.")
|
|
205
205
|
obj.start.is_a?(String) != false || raise("Passed value for field obj.start is not the expected type, validation failed.")
|
|
206
206
|
obj.end_&.is_a?(String) != false || raise("Passed value for field obj.end_ is not the expected type, validation failed.")
|
|
207
|
-
obj.max_participants
|
|
207
|
+
obj.max_participants&.is_a?(Integer) != false || raise("Passed value for field obj.max_participants is not the expected type, validation failed.")
|
|
208
208
|
obj.run_unit&.is_a?(TrophyApiClient::LeaderboardResponseRunUnit) != false || raise("Passed value for field obj.run_unit is not the expected type, validation failed.")
|
|
209
209
|
obj.run_interval&.is_a?(Integer) != false || raise("Passed value for field obj.run_interval is not the expected type, validation failed.")
|
|
210
210
|
end
|
|
@@ -86,8 +86,8 @@ module TrophyApiClient
|
|
|
86
86
|
# type. Null for one-time leaderboards.
|
|
87
87
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
|
88
88
|
# @return [TrophyApiClient::UserLeaderboardResponseWithHistory]
|
|
89
|
-
def initialize(history:, id:, name:, key:, rank_by:, breakdown_attributes:, start:,
|
|
90
|
-
|
|
89
|
+
def initialize(history:, id:, name:, key:, rank_by:, breakdown_attributes:, start:, rank: OMIT, value: OMIT,
|
|
90
|
+
breakdown_attribute: OMIT, metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, max_participants: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
91
91
|
@history = history
|
|
92
92
|
@rank = rank if rank != OMIT
|
|
93
93
|
@value = value if value != OMIT
|
|
@@ -104,7 +104,7 @@ module TrophyApiClient
|
|
|
104
104
|
@description = description if description != OMIT
|
|
105
105
|
@start = start
|
|
106
106
|
@end_ = end_ if end_ != OMIT
|
|
107
|
-
@max_participants = max_participants
|
|
107
|
+
@max_participants = max_participants if max_participants != OMIT
|
|
108
108
|
@run_unit = run_unit if run_unit != OMIT
|
|
109
109
|
@run_interval = run_interval if run_interval != OMIT
|
|
110
110
|
@additional_properties = additional_properties
|
|
@@ -216,7 +216,7 @@ module TrophyApiClient
|
|
|
216
216
|
obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.")
|
|
217
217
|
obj.start.is_a?(String) != false || raise("Passed value for field obj.start is not the expected type, validation failed.")
|
|
218
218
|
obj.end_&.is_a?(String) != false || raise("Passed value for field obj.end_ is not the expected type, validation failed.")
|
|
219
|
-
obj.max_participants
|
|
219
|
+
obj.max_participants&.is_a?(Integer) != false || raise("Passed value for field obj.max_participants is not the expected type, validation failed.")
|
|
220
220
|
obj.run_unit&.is_a?(TrophyApiClient::LeaderboardResponseRunUnit) != false || raise("Passed value for field obj.run_unit is not the expected type, validation failed.")
|
|
221
221
|
obj.run_interval&.is_a?(Integer) != false || raise("Passed value for field obj.run_interval is not the expected type, validation failed.")
|
|
222
222
|
end
|
|
@@ -88,8 +88,8 @@ module TrophyApiClient
|
|
|
88
88
|
# type. Null for one-time leaderboards.
|
|
89
89
|
# @param additional_properties [OpenStruct] Additional properties unmapped to the current class definition
|
|
90
90
|
# @return [TrophyApiClient::WebhookUserLeaderboardResponse]
|
|
91
|
-
def initialize(id:, name:, key:, rank_by:, breakdown_attributes:, start:,
|
|
92
|
-
breakdown_attribute: OMIT, metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
91
|
+
def initialize(id:, name:, key:, rank_by:, breakdown_attributes:, start:, previous_rank: OMIT, previous_value: OMIT, rank: OMIT, value: OMIT,
|
|
92
|
+
breakdown_attribute: OMIT, metric_key: OMIT, metric_name: OMIT, points_system_key: OMIT, points_system_name: OMIT, description: OMIT, end_: OMIT, max_participants: OMIT, run_unit: OMIT, run_interval: OMIT, additional_properties: nil)
|
|
93
93
|
@previous_rank = previous_rank if previous_rank != OMIT
|
|
94
94
|
@previous_value = previous_value if previous_value != OMIT
|
|
95
95
|
@rank = rank if rank != OMIT
|
|
@@ -107,7 +107,7 @@ module TrophyApiClient
|
|
|
107
107
|
@description = description if description != OMIT
|
|
108
108
|
@start = start
|
|
109
109
|
@end_ = end_ if end_ != OMIT
|
|
110
|
-
@max_participants = max_participants
|
|
110
|
+
@max_participants = max_participants if max_participants != OMIT
|
|
111
111
|
@run_unit = run_unit if run_unit != OMIT
|
|
112
112
|
@run_interval = run_interval if run_interval != OMIT
|
|
113
113
|
@additional_properties = additional_properties
|
|
@@ -220,7 +220,7 @@ module TrophyApiClient
|
|
|
220
220
|
obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.")
|
|
221
221
|
obj.start.is_a?(String) != false || raise("Passed value for field obj.start is not the expected type, validation failed.")
|
|
222
222
|
obj.end_&.is_a?(String) != false || raise("Passed value for field obj.end_ is not the expected type, validation failed.")
|
|
223
|
-
obj.max_participants
|
|
223
|
+
obj.max_participants&.is_a?(Integer) != false || raise("Passed value for field obj.max_participants is not the expected type, validation failed.")
|
|
224
224
|
obj.run_unit&.is_a?(TrophyApiClient::LeaderboardResponseRunUnit) != false || raise("Passed value for field obj.run_unit is not the expected type, validation failed.")
|
|
225
225
|
obj.run_interval&.is_a?(Integer) != false || raise("Passed value for field obj.run_interval is not the expected type, validation failed.")
|
|
226
226
|
end
|