You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
obj.achieved_at.is_a?(DateTime) != false || raise("Passed value for field obj.achieved_at is not the expected type, validation failed.")
160
+
obj.achieved_at&.is_a?(DateTime) != false || raise("Passed value for field obj.achieved_at is not the expected type, validation failed.")
159
161
obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
160
162
obj.name.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.")
161
163
obj.trigger.is_a?(TrophyApiClient::AchievementResponseTrigger) != false || raise("Passed value for field obj.trigger is not the expected type, validation failed.")
obj.achieved_at.is_a?(DateTime) != false || raise("Passed value for field obj.achieved_at is not the expected type, validation failed.")
144
+
obj.achieved_at&.is_a?(DateTime) != false || raise("Passed value for field obj.achieved_at is not the expected type, validation failed.")
143
145
obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
144
146
obj.name.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.")
145
147
obj.trigger.is_a?(TrophyApiClient::AchievementResponseTrigger) != false || raise("Passed value for field obj.trigger is not the expected type, validation failed.")
0 commit comments