Skip to content

Commit 555b56b

Browse files
authored
Update access_token.rb
1 parent c95894b commit 555b56b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Ruby/appTokenRuby/model/access_token.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
require_relative 'jsonable'
33

44
class FixedInfo < JSONable
5-
attr_accessor :userId, :levelName
5+
attr_accessor :user_id, :level_name
66

77
def initialize; end
88

9-
def initialize(userId, levelName)
10-
@userId = userId
11-
@levelName = levelName
9+
def initialize(user_id, level_name)
10+
@user_id = user_id
11+
@level_name = level_name
1212
end
1313

1414
end

0 commit comments

Comments
 (0)