Sha256: 7f1be8814206d6a1d39fb4bb40aa66faad68f51adbc0f46c5fbef5e7b3b95b6d
Contents?: true
Size: 414 Bytes
Versions: 4
Compression:
Stored size: 414 Bytes
Contents
# frozen_string_literal: true module RubyLokaliseApi module OAuth2 class Refresh attr_reader :access_token, :expires_in, :scope, :token_type def initialize(raw_params) @access_token = raw_params['access_token'] @expires_in = raw_params['expires_in'] @scope = raw_params['scope'] @token_type = raw_params['token_type'] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems