# frozen_string_literal: true require 'truelayer/base_model' module Truelayer class Token < BaseModel attributes :access_token, :expires_in, :token_type, :refresh_token, :scope def scopes scope.to_s.split end end end