class Trello::Token

@!attribute [r] id

@return [String]

@!attribute [r] identifier

@return [String]

@!attribute [r] member_id

@return [String]

@!attribute [r] created_at

@return [Datetime]

@!attribute [r] expires_at

@return [Datetime]

@!attribute [r] permissions

@return [Object]

@!attribute [r] webhooks

@return [Object]

Public Class Methods

find(token, params = {webhooks: true}) click to toggle source

Finds a token

# File lib/trello/token.rb, line 32
def find(token, params = {webhooks: true})
  client.find(:token, token, params)
end