class EasyCodef::RequestInfo
API 요청에 필요한 정보 클래스 Codef
인스턴스에서 API 요청을 보낼때 서비스 타입별 필요한 정보를 가져와서 사용한다 이때 정보를 저장하는 역할을 한다
Public Class Methods
new(domain, client_id, client_secret)
click to toggle source
# File lib/easycodefrb/easycodef.rb, line 40 def initialize(domain, client_id, client_secret) @domain = domain @client_id = client_id @client_secret = client_secret end
Public Instance Methods
client_id()
click to toggle source
# File lib/easycodefrb/easycodef.rb, line 50 def client_id() return @client_id end
client_secret()
click to toggle source
# File lib/easycodefrb/easycodef.rb, line 54 def client_secret() return @client_secret end
domain()
click to toggle source
# File lib/easycodefrb/easycodef.rb, line 46 def domain() return @domain end