class CircleCI::CLI::Response::Account

Public Class Methods

me() click to toggle source
# File lib/circleci/cli/response/account.rb, line 16
def me
  Account.new(CircleCi::User.new.me.body)
end
new(hash) click to toggle source
# File lib/circleci/cli/response/account.rb, line 7
def initialize(hash)
  @hash = hash
end

Public Instance Methods

pusher_id() click to toggle source
# File lib/circleci/cli/response/account.rb, line 11
def pusher_id
  @hash['pusher_id']
end